当前位置:  开发笔记 > 前端 > 正文

end()函数

如何解决《end()函数》经验,为你挑选了1个好方法。



1> John Milliki..:

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?');
    });

推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有