Something like PhantomJS may be more robust, but here's some basic Python code to extract it the full menu:
import json
import re
import urllib2
text = urllib2.urlopen('http://dcsd.nutrislice.com/menu/meadow-view/lunch/').read()
menu = json.loads(re.search(r"bootstrapData['menuMonthWeeks']s*=s*(.*);", text).group(1))
print menu
After that, you'll want to search through the menu for the date you're interested in.
EDIT: Some overkill on my part:
import itertools
import json
import re
import urllib2
text = urllib2.urlopen('http://dcsd.nutrislice.com/menu/meadow-view/lunch/').read()
menus = json.loads(re.search(r"bootstrapData['menuMonthWeeks']s*=s*(.*);", text).group(1))
days = itertools.chain.from_iterable(menu['days'] for menu in menus)
day = next(itertools.dropwhile(lambda day: day['date'] != '2014-01-13', days), None)
if day:
print '
'.join(item['food']['description'] for item in day['menu_items'])
else:
print 'Day not found.'
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…