苏飞论坛

标题: jquery怎么禁用和启动Button按钮 [打印本页]

作者: 站长苏飞    时间: 2013-4-27 15:39
标题: jquery怎么禁用和启动Button按钮
最直接的方法如下
[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]
大家有什么问题一起讨论下吧






欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4