这end()
没有任何作用.这样的编码是没有意义的.它将返回$('#myBox')
- 示例非常差.更有趣的是这样的:
$('#myBox').show ().children ('.myClass').hide ().end ().blink ();
将显示myBox
,隐藏指定的孩子,然后闪烁框.这里有更多有趣的例子:
http://simonwillison.net/2007/Aug/15/jquery/
如:
$('form#login') // hide all the labels inside the form with the 'optional' class .find('label.optional').hide().end() // add a red border to any password fields in the form .find('input:password').css('border', '1px solid red').end() // add a submit handler to the form .submit(function(){ return confirm('Are you sure you want to submit?'); });