如何解除代碼?
灰化:加屬性disabled="true", 如果是點擊后觸發,可使用屬性onclick="javascript:{this.disabled=true; }"來實現。如果要點擊后觸發其他操作增加個函數:onclick="javascript:{this.disabled=true; function( ) }" 。
解除:利用JavaScript去除,例如用jQuery: $("#id").attr("disabled",false); 。
如何解除代碼?
灰化:加屬性disabled="true", 如果是點擊后觸發,可使用屬性onclick="javascript:{this.disabled=true; }"來實現。如果要點擊后觸發其他操作增加個函數:onclick="javascript:{this.disabled=true; function( ) }" 。
解除:利用JavaScript去除,例如用jQuery: $("#id").attr("disabled",false); 。