el表达式

 

EL 全名为Expression Language

EL 语法很简单,它最大的特点就是使用上很方便。接下来介绍EL主要的语法结构:

${sessionScope.user.sex}

所有EL都是以${为起始、以}为结尾的。上述EL范例的意思是:从Session的范围中,取得

用户的性别。假若依照之前JSP Scriptlet的写法如下:

User user = (User)session.getAttribute("user");

String sex = user.getSex( );

两者相比较之下,可以发现EL 的语法比传统JSP Scriptlet 更为方便、简洁。

 

.与 [ ] 运算符

EL 提供 和 [ ] 两种运算符来导航数据。下列两者所代表的意思是一样的:

${sessionScope.user.sex}等于${sessionScope.user["sex"]}

和 [ ] 也可以同时混合使用,如下:

${sessionScope.shoppingCart[0].price}

回传结果为shoppingCart中第一项物品的价格。

不过,以下两种情况,两者会有差异:

(1) 当要存取的属性名称中包含一些特殊字符,如或 – 等并非字母或数字的符号,就一定要使用 [ ],例如:${user.My-Name }

上述是不正确的方式,应当改为:${user["My-Name"] }

(2) 我们来考虑下列情况:

${sessionScope.user[data]}

此时,data 是一个变量,假若data的值为"sex"时,那上述的例子等于${sessionScope.user.sex}

假若data 的值为"name"时,它就等于${sessionScope.user.name}。因此,如果要动态取值时,就可以用上述的方法来做,但无法做到动态取值。

 

EL 变量

EL 存取变量数据的方法很简单,例如:${username}。它的意思是取出某一范围中名称为username的变量。因为我们并没有指定哪一个范围的username,所以它的默认值会先从Page 范围找,假如找不到,再依序到RequestSessionApplication范围。假如途中找到username,就直接回传,不再继续找下去,但是假如全部的范围都没有找到时,就回传null,当然EL表达式还会做出优化,页面上显示空白,而不是打印输出NULL。

  http://xiaozhao.renren.com/detail/experience/870747

  http://xiaozhao.renren.com/detail/experience/871853

  http://xiaozhao.renren.com/detail/experience/873257

  http://xiaozhao.renren.com/detail/experience/873797

  http://t.163.com/event/info/eventId/5724399117469493608

  http://t.163.com/event/info/eventId/-5025850031946050396

  http://t.163.com/event/info/eventId/-8000216652989774758

  http://t.163.com/event/info/eventId/8688079466835886900

  http://t.163.com/event/info/eventId/2302541847400903953

  http://t.163.com/event/info/eventId/-8994228978273990092

  http://t.163.com/event/info/eventId/-4714750790581667226

  http://t.163.com/event/info/eventId/-7915421818541501296

  http://t.163.com/event/info/eventId/-9091027910628571657

  http://t.163.com/event/info/eventId/2983753702988419234

  http://t.163.com/event/info/eventId/3914001270717122231

  http://t.163.com/event/info/eventId/1671637513564615652

  http://t.163.com/event/info/eventId/-9048680560626234638

  http://t.163.com/event/info/eventId/-6999357183133495897

  http://t.163.com/event/info/eventId/-273122147826967846

  http://t.163.com/event/info/eventId/3273300897644352187

  http://t.163.com/event/info/eventId/5593054463215076188

  http://t.163.com/event/info/eventId/4535457744691544238

  http://t.163.com/event/info/eventId/-8309967883298679369

  http://t.163.com/event/info/eventId/-45446494245610698

  http://t.163.com/event/info/eventId/853684410000054202

  http://t.163.com/event/info/eventId/4832287502738821610

  http://t.163.com/event/info/eventId/8985710857118314968

  http://t.163.com/event/info/eventId/-3868171923378318949

  http://xiaozhao.renren.com/detail/experience/940979

  http://xiaozhao.renren.com/detail/experience/941241

  http://xiaozhao.renren.com/detail/experience/941545

  http://xiaozhao.renren.com/detail/experience/941763

  http://xiaozhao.renren.com/detail/experience/942009

  http://xiaozhao.renren.com/detail/experience/942379

  http://xiaozhao.renren.com/detail/experience/943651

  http://xiaozhao.renren.com/detail/experience/944101

  http://xiaozhao.renren.com/detail/experience/944633

  http://xiaozhao.renren.com/detail/experience/944829

  http://xiaozhao.renren.com/detail/experience/945445

  http://xiaozhao.renren.com/detail/experience/946643

  http://xiaozhao.renren.com/detail/experience/946977

  http://xiaozhao.renren.com/detail/experience/947585

  http://xiaozhao.renren.com/detail/experience/947775

  http://xiaozhao.renren.com/detail/experience/948057

  http://xiaozhao.renren.com/detail/experience/948339

  http://xiaozhao.renren.com/detail/experience/948629

  http://xiaozhao.renren.com/detail/experience/948941

  http://xiaozhao.renren.com/detail/experience/949951

  http://xiaozhao.renren.com/detail/experience/950115

  http://xiaozhao.renren.com/detail/experience/950677

  http://xiaozhao.renren.com/detail/experience/950839

  http://www.xyzc.cn/health/jsmr/20130813/373409.html

  http://www.xyzc.cn/health/jsmr/20130813/375680.html

  http://www.xyzc.cn/health/jsmr/20130813/375679.html

  http://www.xyzc.cn/health/jsmr/20130813/375678.html

  http://www.xyzc.cn/health/jsmr/20130813/375675.html

  http://www.xyzc.cn/health/jsmr/20130813/375635.html

  http://www.xyzc.cn/health/jsmr/20130813/375627.html

  http://www.xyzc.cn/health/jsmr/20130813/375623.html

  http://www.xyzc.cn/health/jsmr/20130813/375482.html

  http://blog.cbe21.com/user1/17919/archives/2013/358526.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358561.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358583.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358613.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358613.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358673.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358696.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358804.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358825.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358870.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358919.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358952.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358998.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/359685.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/359702.shtml

  http://www.xyzc.cn/health/jsmr/20130812/364844.html

  http://xiaozhao.renren.com/detail/experience/922241

  http://xiaozhao.renren.com/detail/experience/922963

  http://xiaozhao.renren.com/detail/experience/923603

  http://xiaozhao.renren.com/detail/experience/924163

  http://xiaozhao.renren.com/detail/experience/925479

  http://xiaozhao.renren.com/detail/experience/925927

  http://xiaozhao.renren.com/detail/experience/926681

  http://xiaozhao.renren.com/detail/experience/927261

  http://xiaozhao.renren.com/detail/experience/927655

  http://xiaozhao.renren.com/detail/experience/928093

  http://xiaozhao.renren.com/detail/experience/940593

  http://xiaozhao.renren.com/detail/experience/941089

  http://xiaozhao.renren.com/detail/experience/941505

  http://xiaozhao.renren.com/detail/experience/941845

  http://xiaozhao.renren.com/detail/experience/942209

  http://xiaozhao.renren.com/detail/experience/942969

  http://xiaozhao.renren.com/detail/experience/943291

  http://xiaozhao.renren.com/detail/experience/943717

  http://xiaozhao.renren.com/detail/experience/944019

  http://xiaozhao.renren.com/detail/experience/944305

  http://www.nfm-sh.cn/xzs/301.html

  http://www.nfm-sh.cn/yyzx/302.html

  http://www.nfm-sh.cn/ask/303.html

  http://www.56.com/p60/v_MTI0MzM5MTIx.html

  http://www.56.com/p87/v_MTI0MzQxMjYw.html

  http://www.56.com/p94/v_MTI0MzQxNjE5.html

  http://www.56.com/p55/v_MTI0MzQxOTMy.html

  http://www.56.com/p11/v_MTI0MzQyMTUy.html

  http://www.56.com/p17/v_MTI0MzQyMzM0.html

  http://www.56.com/p60/v_MTI0MzQyNTUz.html

  http://www.56.com/p66/v_MTI0MzQyNzM1.html

  http://www.56.com/p95/v_MTI0MzQzNTU2.html

  http://www.56.com/p15/v_MTI0MzQzODI4.html

  http://www.56.com/p16/v_MTI0MzQ1NDEz.html

  http://www.56.com/p32/v_MTI0MzQ3MTAx.html

  http://www.56.com/p29/v_MTI0MzU1Mjgy.html

  http://www.56.com/p18/v_MTI0MzU1NzEx.html

  http://www.56.com/p66/v_MTI0MzU1ODQ3.html

  http://www.56.com/p17/v_MTI0MzU2MDYy.html

  http://www.56.com/p34/v_MTI0MzU2Njk1.html

  http://www.56.com/p44/v_MTI0MzU2ODgx.html

  http://www.56.com/p29/v_MTI0MzU2OTU0.html

  http://www.zhihu.com/collection/21138814

  http://www.zhihu.com/collection/21138867

  http://www.zhihu.com/collection/21138918

  http://www.zhihu.com/collection/21139648

  http://www.zhihu.com/collection/21139729

  http://www.zhihu.com/collection/21139790

  http://www.zhihu.com/collection/21140653

  http://www.zhihu.com/collection/21140700

  http://www.zhihu.com/collection/21140745

  http://www.zhihu.com/collection/21141792

  http://www.zhihu.com/collection/21141855

  http://www.zhihu.com/collection/21142003

  http://www.zhihu.com/collection/21142513

  http://www.zhihu.com/collection/21142569

  http://www.zhihu.com/collection/21142614

  http://www.zhihu.com/collection/21142905

  http://www.zhihu.com/collection/21142986

  http://www.zhihu.com/collection/21143081

  http://bbs.e23.cn/thread-175505239-1-1.html

  http://bbs.e23.cn/thread-175505250-1-1.html

  http://bbs.e23.cn/thread-175505261-1-1.html

  http://bbs.e23.cn/thread-175505274-1-1.html

  http://bbs.e23.cn/thread-175505283-1-1.html

  http://bbs.e23.cn/thread-175505293-1-1.html

  http://bbs.e23.cn/thread-175505310-1-1.html

  http://bbs.e23.cn/thread-175505322-1-1.html

  http://bbs.e23.cn/thread-175505427-1-1.html

  http://bbs.e23.cn/thread-175505435-1-1.html

  http://t.163.com/event/info/eventId/-2978308659082582165

  http://t.163.com/event/info/eventId/-2930137652951860458

  http://t.163.com/event/info/eventId/3537126130128854775

  http://t.163.com/event/info/eventId/-4199087755587950551

  http://t.163.com/event/info/eventId/5634207654310267016

  http://t.163.com/event/info/eventId/5339008847494292195

  http://t.163.com/event/info/eventId/-5646200653871026170

  http://t.163.com/event/info/eventId/-5688159987422486914

  http://t.163.com/event/info/eventId/2189935679712613033

  http://t.163.com/event/info/eventId/1591321025420673364

  http://t.163.com/event/info/eventId/-1360407072856927194

  http://t.163.com/event/info/eventId/7480794794393667988

  http://t.163.com/event/info/eventId/-3037292626724583452

  http://t.163.com/event/info/eventId/-680070240499791980

  http://t.163.com/event/info/eventId/-530142465897382046

  http://t.163.com/event/info/eventId/-8200170082606767455

  http://t.163.com/event/info/eventId/-572323604262700012

  http://t.163.com/event/info/eventId/1279169732978579180

  http://photo.163.com/q/6289695

  http://photo.163.com/q/6289708

  http://photo.163.com/q/6289713

  http://photo.163.com/q/6289728

  http://photo.163.com/q/6289741

  http://photo.163.com/q/6289751

  http://photo.163.com/q/6289806

  http://photo.163.com/q/6289817

  http://photo.163.com/q/6289826

  http://photo.163.com/q/6289830

  http://photo.163.com/q/6289882

  http://photo.163.com/q/6293261

  http://photo.163.com/q/6289896

  http://photo.163.com/q/6289904

  http://photo.163.com/q/6289966

  http://photo.163.com/q/6289980

  http://photo.163.com/q/6289986

  http://www.xyzc.cn/health/jsmr/20130810/351280.html

  http://www.xyzc.cn/health/jsmr/20130809/339881.html

  http://www.xyzc.cn/health/jsmr/20130808/334722.html

  http://www.xyzc.cn/health/jsmr/20130808/334963.html

  http://www.xyzc.cn/health/jsmr/20130807/326971.html

  http://www.xyzc.cn/health/jsmr/20130807/325678.html

  http://www.xyzc.cn/health/jsmr/20130807/325672.html

  http://www.xyzc.cn/health/jsmr/20130807/325748.html

  http://t.163.com/event/info/eventId/5100465161505179450

  http://t.163.com/event/info/eventId/-8801800112619155980

  http://t.163.com/event/info/eventId/-3292972492044568381

  http://t.163.com/event/info/eventId/4110957430659545226

  http://t.163.com/event/info/eventId/8080052906290446867

  http://t.163.com/event/info/eventId/2809435661547142263

  http://t.163.com/event/info/eventId/-7103176060040202329

  http://t.163.com/event/info/eventId/-3689933693498065532

  http://t.163.com/event/info/eventId/-6309859448134978052

  http://t.163.com/event/info/eventId/-7200843545700432402

  http://t.163.com/event/info/eventId/1208703890982725700

  http://t.163.com/event/info/eventId/1277594364351329282

  http://t.163.com/event/info/eventId/-8929072296552409846

  http://t.163.com/event/info/eventId/886212950126434060

  http://t.163.com/event/info/eventId/-8707431206723277195

  http://t.163.com/event/info/eventId/-1079798047517001175

  http://t.163.com/event/info/eventId/8896285879114572483

  http://t.163.com/event/info/eventId/6930274839029723335

  http://t.163.com/event/info/eventId/-3925779307003722604

  http://t.163.com/event/info/eventId/8308198767386524367

  http://t.163.com/event/info/eventId/-5174332293732697770

  http://t.163.com/event/info/eventId/-7130363595284154748

  http://t.163.com/event/info/eventId/2405095628904144616

  http://t.163.com/event/info/eventId/-4476474352358777986

  http://t.163.com/event/info/eventId/-6483372281727235972

  http://t.163.com/event/info/eventId/-9133859944956029476

  http://t.163.com/event/info/eventId/-1400506822002483859

  http://t.163.com/event/info/eventId/-6390814561118408489

  http://t.163.com/event/info/eventId/-5404952717300830803

  http://t.163.com/event/info/eventId/-7739520515028460465

  http://t.163.com/event/info/eventId/-6461491242541317135

  http://t.163.com/event/info/eventId/-818028818710637953

  http://t.163.com/event/info/eventId/1375778206205121580

  http://t.163.com/event/info/eventId/8204268245251746243

  http://t.163.com/event/info/eventId/8224035259457123826

  http://t.163.com/event/info/eventId/-7537564453257348435

  http://t.163.com/event/info/eventId/-8537857150880888445

  http://t.163.com/event/info/eventId/-8113037897633708649

  http://t.163.com/event/info/eventId/3533364173860556328

  http://t.163.com/event/info/eventId/4771201715720480275

  http://t.163.com/event/info/eventId/-4050280597824573304

  http://t.163.com/event/info/eventId/-4685758176420014438

  http://c1810089581.blog.163.com/blog/static/2244651902013714114610910/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114653334/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114733705/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114815643/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114851354/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114931836/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115034352/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115148460/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115229638/

  http://c1810089581.blog.163.com/blog/static/224465190201371411539135/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115533881/

  http://a1810089581.blog.163.com/blog/static/224465194201371411561429/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115640402/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115725823/

  http://a1810089581.blog.163.com/blog/static/22446519420137141158989/

  http://a1810089581.blog.163.com/blog/static/224465194201371411595278/

  http://a1810089581.blog.163.com/blog/static/22446519420137140025417/

  http://a1810089581.blog.163.com/blog/static/22446519420137140119345/

  http://a1810089581.blog.163.com/blog/static/22446519420137140149520/

  http://a1810089581.blog.163.com/blog/static/22446519420137140223739/

  http://a1810089581.blog.163.com/blog/static/2244651942013714039230/

  http://b1810089581.blog.163.com/blog/static/224465197201371402720719/

  http://b1810089581.blog.163.com/blog/static/224465197201371402910729/

  http://b1810089581.blog.163.com/blog/static/224465197201371402947279/

  http://b1810089581.blog.163.com/blog/static/224465197201371403041816/

  http://b1810089581.blog.163.com/blog/static/224465197201371403123256/

  http://b1810089581.blog.163.com/blog/static/224465197201371403341665/

  http://c1810089581.blog.163.com/blog/static/22446519020137140374282/

  http://c1810089581.blog.163.com/blog/static/224465190201371403819462/

  http://c1810089581.blog.163.com/blog/static/22446519020137140397709/

  http://c1810089581.blog.163.com/blog/static/224465190201371403944327/

  http://c1810089581.blog.163.com/blog/static/224465190201371404024224/

  http://c1810089581.blog.163.com/blog/static/224465190201371404111796/

  http://c1810089581.blog.163.com/blog/static/224465190201371404156265/

  http://c1810089581.blog.163.com/blog/static/224465190201371404236816/

  http://c1810089581.blog.163.com/blog/static/224465190201371404317825/

  http://c1810089581.blog.163.com/blog/static/224465190201371404350574/

  http://c1810089581.blog.163.com/blog/static/224465190201371404421731/

  http://xiaozhao.renren.com/detail/experience/936787

  http://xiaozhao.renren.com/detail/experience/936949

  http://xiaozhao.renren.com/detail/experience/937249

  http://xiaozhao.renren.com/detail/experience/937717

  http://xiaozhao.renren.com/detail/experience/938067

  http://xiaozhao.renren.com/detail/experience/938697

  http://xiaozhao.renren.com/detail/experience/938809

  http://xiaozhao.renren.com/detail/experience/938987

  http://xiaozhao.renren.com/detail/experience/939215

  http://xiaozhao.renren.com/detail/experience/939449

  http://xiaozhao.renren.com/detail/experience/941819

  http://xiaozhao.renren.com/detail/experience/942149

  http://xiaozhao.renren.com/detail/experience/942257

  http://xiaozhao.renren.com/detail/experience/942407

  http://xiaozhao.renren.com/detail/experience/943025

  http://xiaozhao.renren.com/detail/experience/943117

  http://xiaozhao.renren.com/detail/experience/943223

  http://xiaozhao.renren.com/detail/experience/943391

  http://xiaozhao.renren.com/detail/experience/943521

  http://xiaozhao.renren.com/detail/experience/943727

  http://xiaozhao.renren.com/detail/experience/945839

  http://xiaozhao.renren.com/detail/experience/945929

  http://xiaozhao.renren.com/detail/experience/946145

  http://xiaozhao.renren.com/detail/experience/946435

  http://xiaozhao.renren.com/detail/experience/947259

  http://xiaozhao.renren.com/detail/experience/947335

  http://xiaozhao.renren.com/detail/experience/947559

  http://xiaozhao.renren.com/detail/experience/947781

  http://xiaozhao.renren.com/detail/experience/948059

  http://xiaozhao.renren.com/detail/experience/948147

  http://xiaozhao.renren.com/detail/experience/870747

  http://xiaozhao.renren.com/detail/experience/871853

  http://xiaozhao.renren.com/detail/experience/873257

  http://xiaozhao.renren.com/detail/experience/873797

  http://t.163.com/event/info/eventId/5724399117469493608

  http://t.163.com/event/info/eventId/-5025850031946050396

  http://t.163.com/event/info/eventId/-8000216652989774758

  http://t.163.com/event/info/eventId/8688079466835886900

  http://t.163.com/event/info/eventId/2302541847400903953

  http://t.163.com/event/info/eventId/-8994228978273990092

  http://t.163.com/event/info/eventId/-4714750790581667226

  http://t.163.com/event/info/eventId/-7915421818541501296

  http://t.163.com/event/info/eventId/-9091027910628571657

  http://t.163.com/event/info/eventId/2983753702988419234

  http://t.163.com/event/info/eventId/3914001270717122231

  http://t.163.com/event/info/eventId/1671637513564615652

  http://t.163.com/event/info/eventId/-9048680560626234638

  http://t.163.com/event/info/eventId/-6999357183133495897

  http://t.163.com/event/info/eventId/-273122147826967846

  http://t.163.com/event/info/eventId/3273300897644352187

  http://t.163.com/event/info/eventId/5593054463215076188

  http://t.163.com/event/info/eventId/4535457744691544238

  http://t.163.com/event/info/eventId/-8309967883298679369

  http://t.163.com/event/info/eventId/-45446494245610698

  http://t.163.com/event/info/eventId/853684410000054202

  http://t.163.com/event/info/eventId/4832287502738821610

  http://t.163.com/event/info/eventId/8985710857118314968

  http://t.163.com/event/info/eventId/-3868171923378318949

  http://xiaozhao.renren.com/detail/experience/940979

  http://xiaozhao.renren.com/detail/experience/941241

  http://xiaozhao.renren.com/detail/experience/941545

  http://xiaozhao.renren.com/detail/experience/941763

  http://xiaozhao.renren.com/detail/experience/942009

  http://xiaozhao.renren.com/detail/experience/942379

  http://xiaozhao.renren.com/detail/experience/943651

  http://xiaozhao.renren.com/detail/experience/944101

  http://xiaozhao.renren.com/detail/experience/944633

  http://xiaozhao.renren.com/detail/experience/944829

  http://xiaozhao.renren.com/detail/experience/945445

  http://xiaozhao.renren.com/detail/experience/946643

  http://xiaozhao.renren.com/detail/experience/946977

  http://xiaozhao.renren.com/detail/experience/947585

  http://xiaozhao.renren.com/detail/experience/947775

  http://xiaozhao.renren.com/detail/experience/948057

  http://xiaozhao.renren.com/detail/experience/948339

  http://xiaozhao.renren.com/detail/experience/948629

  http://xiaozhao.renren.com/detail/experience/948941

  http://xiaozhao.renren.com/detail/experience/949951

  http://xiaozhao.renren.com/detail/experience/950115

  http://xiaozhao.renren.com/detail/experience/950677

  http://xiaozhao.renren.com/detail/experience/950839

  http://www.xyzc.cn/health/jsmr/20130813/373409.html

  http://www.xyzc.cn/health/jsmr/20130813/375680.html

  http://www.xyzc.cn/health/jsmr/20130813/375679.html

  http://www.xyzc.cn/health/jsmr/20130813/375678.html

  http://www.xyzc.cn/health/jsmr/20130813/375675.html

  http://www.xyzc.cn/health/jsmr/20130813/375635.html

  http://www.xyzc.cn/health/jsmr/20130813/375627.html

  http://www.xyzc.cn/health/jsmr/20130813/375623.html

  http://www.xyzc.cn/health/jsmr/20130813/375482.html

  http://blog.cbe21.com/user1/17919/archives/2013/358526.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358561.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358583.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358613.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358613.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358673.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358696.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358804.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358825.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358870.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358919.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358952.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/358998.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/359685.shtml

  http://blog.cbe21.com/user1/17919/archives/2013/359702.shtml

  http://www.xyzc.cn/health/jsmr/20130812/364844.html

  http://xiaozhao.renren.com/detail/experience/922241

  http://xiaozhao.renren.com/detail/experience/922963

  http://xiaozhao.renren.com/detail/experience/923603

  http://xiaozhao.renren.com/detail/experience/924163

  http://xiaozhao.renren.com/detail/experience/925479

  http://xiaozhao.renren.com/detail/experience/925927

  http://xiaozhao.renren.com/detail/experience/926681

  http://xiaozhao.renren.com/detail/experience/927261

  http://xiaozhao.renren.com/detail/experience/927655

  http://xiaozhao.renren.com/detail/experience/928093

  http://xiaozhao.renren.com/detail/experience/940593

  http://xiaozhao.renren.com/detail/experience/941089

  http://xiaozhao.renren.com/detail/experience/941505

  http://xiaozhao.renren.com/detail/experience/941845

  http://xiaozhao.renren.com/detail/experience/942209

  http://xiaozhao.renren.com/detail/experience/942969

  http://xiaozhao.renren.com/detail/experience/943291

  http://xiaozhao.renren.com/detail/experience/943717

  http://xiaozhao.renren.com/detail/experience/944019

  http://xiaozhao.renren.com/detail/experience/944305

  http://www.nfm-sh.cn/xzs/301.html

  http://www.nfm-sh.cn/yyzx/302.html

  http://www.nfm-sh.cn/ask/303.html

  http://www.56.com/p60/v_MTI0MzM5MTIx.html

  http://www.56.com/p87/v_MTI0MzQxMjYw.html

  http://www.56.com/p94/v_MTI0MzQxNjE5.html

  http://www.56.com/p55/v_MTI0MzQxOTMy.html

  http://www.56.com/p11/v_MTI0MzQyMTUy.html

  http://www.56.com/p17/v_MTI0MzQyMzM0.html

  http://www.56.com/p60/v_MTI0MzQyNTUz.html

  http://www.56.com/p66/v_MTI0MzQyNzM1.html

  http://www.56.com/p95/v_MTI0MzQzNTU2.html

  http://www.56.com/p15/v_MTI0MzQzODI4.html

  http://www.56.com/p16/v_MTI0MzQ1NDEz.html

  http://www.56.com/p32/v_MTI0MzQ3MTAx.html

  http://www.56.com/p29/v_MTI0MzU1Mjgy.html

  http://www.56.com/p18/v_MTI0MzU1NzEx.html

  http://www.56.com/p66/v_MTI0MzU1ODQ3.html

  http://www.56.com/p17/v_MTI0MzU2MDYy.html

  http://www.56.com/p34/v_MTI0MzU2Njk1.html

  http://www.56.com/p44/v_MTI0MzU2ODgx.html

  http://www.56.com/p29/v_MTI0MzU2OTU0.html

  http://www.zhihu.com/collection/21138814

  http://www.zhihu.com/collection/21138867

  http://www.zhihu.com/collection/21138918

  http://www.zhihu.com/collection/21139648

  http://www.zhihu.com/collection/21139729

  http://www.zhihu.com/collection/21139790

  http://www.zhihu.com/collection/21140653

  http://www.zhihu.com/collection/21140700

  http://www.zhihu.com/collection/21140745

  http://www.zhihu.com/collection/21141792

  http://www.zhihu.com/collection/21141855

  http://www.zhihu.com/collection/21142003

  http://www.zhihu.com/collection/21142513

  http://www.zhihu.com/collection/21142569

  http://www.zhihu.com/collection/21142614

  http://www.zhihu.com/collection/21142905

  http://www.zhihu.com/collection/21142986

  http://www.zhihu.com/collection/21143081

  http://bbs.e23.cn/thread-175505239-1-1.html

  http://bbs.e23.cn/thread-175505250-1-1.html

  http://bbs.e23.cn/thread-175505261-1-1.html

  http://bbs.e23.cn/thread-175505274-1-1.html

  http://bbs.e23.cn/thread-175505283-1-1.html

  http://bbs.e23.cn/thread-175505293-1-1.html

  http://bbs.e23.cn/thread-175505310-1-1.html

  http://bbs.e23.cn/thread-175505322-1-1.html

  http://bbs.e23.cn/thread-175505427-1-1.html

  http://bbs.e23.cn/thread-175505435-1-1.html

  http://t.163.com/event/info/eventId/-2978308659082582165

  http://t.163.com/event/info/eventId/-2930137652951860458

  http://t.163.com/event/info/eventId/3537126130128854775

  http://t.163.com/event/info/eventId/-4199087755587950551

  http://t.163.com/event/info/eventId/5634207654310267016

  http://t.163.com/event/info/eventId/5339008847494292195

  http://t.163.com/event/info/eventId/-5646200653871026170

  http://t.163.com/event/info/eventId/-5688159987422486914

  http://t.163.com/event/info/eventId/2189935679712613033

  http://t.163.com/event/info/eventId/1591321025420673364

  http://t.163.com/event/info/eventId/-1360407072856927194

  http://t.163.com/event/info/eventId/7480794794393667988

  http://t.163.com/event/info/eventId/-3037292626724583452

  http://t.163.com/event/info/eventId/-680070240499791980

  http://t.163.com/event/info/eventId/-530142465897382046

  http://t.163.com/event/info/eventId/-8200170082606767455

  http://t.163.com/event/info/eventId/-572323604262700012

  http://t.163.com/event/info/eventId/1279169732978579180

  http://photo.163.com/q/6289695

  http://photo.163.com/q/6289708

  http://photo.163.com/q/6289713

  http://photo.163.com/q/6289728

  http://photo.163.com/q/6289741

  http://photo.163.com/q/6289751

  http://photo.163.com/q/6289806

  http://photo.163.com/q/6289817

  http://photo.163.com/q/6289826

  http://photo.163.com/q/6289830

  http://photo.163.com/q/6289882

  http://photo.163.com/q/6293261

  http://photo.163.com/q/6289896

  http://photo.163.com/q/6289904

  http://photo.163.com/q/6289966

  http://photo.163.com/q/6289980

  http://photo.163.com/q/6289986

  http://www.xyzc.cn/health/jsmr/20130810/351280.html

  http://www.xyzc.cn/health/jsmr/20130809/339881.html

  http://www.xyzc.cn/health/jsmr/20130808/334722.html

  http://www.xyzc.cn/health/jsmr/20130808/334963.html

  http://www.xyzc.cn/health/jsmr/20130807/326971.html

  http://www.xyzc.cn/health/jsmr/20130807/325678.html

  http://www.xyzc.cn/health/jsmr/20130807/325672.html

  http://www.xyzc.cn/health/jsmr/20130807/325748.html

  http://t.163.com/event/info/eventId/5100465161505179450

  http://t.163.com/event/info/eventId/-8801800112619155980

  http://t.163.com/event/info/eventId/-3292972492044568381

  http://t.163.com/event/info/eventId/4110957430659545226

  http://t.163.com/event/info/eventId/8080052906290446867

  http://t.163.com/event/info/eventId/2809435661547142263

  http://t.163.com/event/info/eventId/-7103176060040202329

  http://t.163.com/event/info/eventId/-3689933693498065532

  http://t.163.com/event/info/eventId/-6309859448134978052

  http://t.163.com/event/info/eventId/-7200843545700432402

  http://t.163.com/event/info/eventId/1208703890982725700

  http://t.163.com/event/info/eventId/1277594364351329282

  http://t.163.com/event/info/eventId/-8929072296552409846

  http://t.163.com/event/info/eventId/886212950126434060

  http://t.163.com/event/info/eventId/-8707431206723277195

  http://t.163.com/event/info/eventId/-1079798047517001175

  http://t.163.com/event/info/eventId/8896285879114572483

  http://t.163.com/event/info/eventId/6930274839029723335

  http://t.163.com/event/info/eventId/-3925779307003722604

  http://t.163.com/event/info/eventId/8308198767386524367

  http://t.163.com/event/info/eventId/-5174332293732697770

  http://t.163.com/event/info/eventId/-7130363595284154748

  http://t.163.com/event/info/eventId/2405095628904144616

  http://t.163.com/event/info/eventId/-4476474352358777986

  http://t.163.com/event/info/eventId/-6483372281727235972

  http://t.163.com/event/info/eventId/-9133859944956029476

  http://t.163.com/event/info/eventId/-1400506822002483859

  http://t.163.com/event/info/eventId/-6390814561118408489

  http://t.163.com/event/info/eventId/-5404952717300830803

  http://t.163.com/event/info/eventId/-7739520515028460465

  http://t.163.com/event/info/eventId/-6461491242541317135

  http://t.163.com/event/info/eventId/-818028818710637953

  http://t.163.com/event/info/eventId/1375778206205121580

  http://t.163.com/event/info/eventId/8204268245251746243

  http://t.163.com/event/info/eventId/8224035259457123826

  http://t.163.com/event/info/eventId/-7537564453257348435

  http://t.163.com/event/info/eventId/-8537857150880888445

  http://t.163.com/event/info/eventId/-8113037897633708649

  http://t.163.com/event/info/eventId/3533364173860556328

  http://t.163.com/event/info/eventId/4771201715720480275

  http://t.163.com/event/info/eventId/-4050280597824573304

  http://t.163.com/event/info/eventId/-4685758176420014438

  http://c1810089581.blog.163.com/blog/static/2244651902013714114610910/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114653334/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114733705/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114815643/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114851354/

  http://c1810089581.blog.163.com/blog/static/2244651902013714114931836/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115034352/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115148460/

  http://c1810089581.blog.163.com/blog/static/2244651902013714115229638/

  http://c1810089581.blog.163.com/blog/static/224465190201371411539135/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115533881/

  http://a1810089581.blog.163.com/blog/static/224465194201371411561429/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115640402/

  http://a1810089581.blog.163.com/blog/static/2244651942013714115725823/

  http://a1810089581.blog.163.com/blog/static/22446519420137141158989/

  http://a1810089581.blog.163.com/blog/static/224465194201371411595278/

  http://a1810089581.blog.163.com/blog/static/22446519420137140025417/

  http://a1810089581.blog.163.com/blog/static/22446519420137140119345/

  http://a1810089581.blog.163.com/blog/static/22446519420137140149520/

  http://a1810089581.blog.163.com/blog/static/22446519420137140223739/

  http://a1810089581.blog.163.com/blog/static/2244651942013714039230/

  http://b1810089581.blog.163.com/blog/static/224465197201371402720719/

  http://b1810089581.blog.163.com/blog/static/224465197201371402910729/

  http://b1810089581.blog.163.com/blog/static/224465197201371402947279/

  http://b1810089581.blog.163.com/blog/static/224465197201371403041816/

  http://b1810089581.blog.163.com/blog/static/224465197201371403123256/

  http://b1810089581.blog.163.com/blog/static/224465197201371403341665/

  http://c1810089581.blog.163.com/blog/static/22446519020137140374282/

  http://c1810089581.blog.163.com/blog/static/224465190201371403819462/

  http://c1810089581.blog.163.com/blog/static/22446519020137140397709/

  http://c1810089581.blog.163.com/blog/static/224465190201371403944327/

  http://c1810089581.blog.163.com/blog/static/224465190201371404024224/

  http://c1810089581.blog.163.com/blog/static/224465190201371404111796/

  http://c1810089581.blog.163.com/blog/static/224465190201371404156265/

  http://c1810089581.blog.163.com/blog/static/224465190201371404236816/

  http://c1810089581.blog.163.com/blog/static/224465190201371404317825/

  http://c1810089581.blog.163.com/blog/static/224465190201371404350574/

  http://c1810089581.blog.163.com/blog/static/224465190201371404421731/

  http://xiaozhao.renren.com/detail/experience/936787

  http://xiaozhao.renren.com/detail/experience/936949

  http://xiaozhao.renren.com/detail/experience/937249

  http://xiaozhao.renren.com/detail/experience/937717

  http://xiaozhao.renren.com/detail/experience/938067

  http://xiaozhao.renren.com/detail/experience/938697

  http://xiaozhao.renren.com/detail/experience/938809

  http://xiaozhao.renren.com/detail/experience/938987

  http://xiaozhao.renren.com/detail/experience/939215

  http://xiaozhao.renren.com/detail/experience/939449

  http://xiaozhao.renren.com/detail/experience/941819

  http://xiaozhao.renren.com/detail/experience/942149

  http://xiaozhao.renren.com/detail/experience/942257

  http://xiaozhao.renren.com/detail/experience/942407

  http://xiaozhao.renren.com/detail/experience/943025

  http://xiaozhao.renren.com/detail/experience/943117

  http://xiaozhao.renren.com/detail/experience/943223

  http://xiaozhao.renren.com/detail/experience/943391

  http://xiaozhao.renren.com/detail/experience/943521

  http://xiaozhao.renren.com/detail/experience/943727

  http://xiaozhao.renren.com/detail/experience/945839

  http://xiaozhao.renren.com/detail/experience/945929

  http://xiaozhao.renren.com/detail/experience/946145

  http://xiaozhao.renren.com/detail/experience/946435

  http://xiaozhao.renren.com/detail/experience/947259

  http://xiaozhao.renren.com/detail/experience/947335

  http://xiaozhao.renren.com/detail/experience/947559

  http://xiaozhao.renren.com/detail/experience/947781

  http://xiaozhao.renren.com/detail/experience/948059

  http://xiaozhao.renren.com/detail/experience/948147

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值