在JavaScript中,可以使用setAttribute()
方法來設置disabled
屬性,使用removeAttribute()
方法來移除disabled
屬性。
設置disabled
屬性:
document.getElementById("myButton").setAttribute("disabled", "disabled");
移除disabled
屬性:
document.getElementById("myButton").removeAttribute("disabled");
在jQuery中,可以使用prop()
方法來設置和移除disabled
屬性。
設置disabled
屬性:
$("#myButton").prop("disabled", true);
移除disabled
屬性:
$("#myButton").prop("disabled", false);
注意:在jQuery中,使用prop()
方法設置disabled
屬性時,如果值為true
,則會添加disabled
屬性;如果值為false
,則會移除disabled
屬性。