码迷,mamicode.com
首页 > Web开发 > 详细

jquery 屏蔽元素

时间:2014-04-29 16:35:47      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:java   io   re   cti   c   javascript   


<script type="text/javascript">
(function($) {
$.fn.disable = function() {
/// <summary>
/// 屏蔽所有元素
/// </summary>
/// <returns type="jQuery" />
return $(this).find("*").each(function() {
$(this).attr("disabled", "disabled");
});
}
$.fn.enable = function() {
/// <summary>
/// 使得所有元素都有效
/// </summary>
/// <returns type="jQuery" />
return $(this).find("*").each(function() {
$(this).removeAttr("disabled");
});
}
})(jQuery);
</script>

jquery 屏蔽元素,码迷,mamicode.com

jquery 屏蔽元素

标签:java   io   re   cti   c   javascript   

原文地址:http://www.cnblogs.com/lengv10/p/3699548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!