- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
最直接的方法如下
[code=html]1.按钮的id为btnzhuce
==》 控制按钮为禁用:
$("#btnzhuce").attr({"disabled":"disabled"});
==》控制按钮为可用
$("#btnzhuce").removeAttr("disabled");//将按钮可用[/code]
还有一种情况是这样的
[code=html] $("#search_sub").attr("disabled", true);
return false;[/code]
还有哦
[code=html](function($)
{
$.fn.extend({
disable: function()
{
return this.each(function()
{
$(this).addClass("disable").attr({
disabled: true
});
});
},
enable: function()
{
return this.each(function()
{
$(this).removeClass("disable").removeAttr('disabled');
});
}
});
})(jQuery); [/code]
大家有什么问题一起讨论下吧
|
|