jQuery(function ($) { $.fn.disable = function () { return this.each(function () { if (this.disabled != null) this.disabled = true; }) }; //调用方式 $('input').disable(); });
jQuery扩展函数设置所有对象只读