1. 程式人生 > >jQuery實現禁用啟用按鈕

jQuery實現禁用啟用按鈕

(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);