扩展 jQuery 元素集来提供新的方法(通常用来制作插件)。
查看这里<a href="http://docs.jquery.com/Plugins/Authoring" >Plugins/Authoring</a>可以获取更多信息。
用来扩充 jQuery 对象。
增加两个插件方法。
jQuery.fn.extend({
check: function() {
return this.each(function() { this.checked = true; });
},
uncheck: function() {
return this.each(function() { this.checked = false; });
}
});
$("input[type=checkbox]").check();
$("input[type=radio]").uncheck();
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。