js和jquery设置disabled属性为true使按钮失效_javascript技巧
程序员文章站
2022-06-03 22:00:58
...
设置disabled属性为true即为不可用状态。
JS
document.getElementByIdx("btn").disabled=true;
jquery
$("#btn").attr("disabled", true);
html