1. 程式人生 > >js和jquery使按鈕失效的方法

js和jquery使按鈕失效的方法

js和jquery使按鈕失效的方法
設定disabled屬性為true即為不可用狀態。
JS:
document.getElementByIdx("btn").disabled=true;

jquery
$("#btn").attr("disabled", true);

html:
<input type="button" value="提交" id="btn">