jquery 屏蔽元素
时间:2014-04-29 16:35:47
收藏:0
阅读:292
<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>
评论(0)