欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

js和jquery设置disabled属性为true使按钮失效

shiping1 的头像
设置disabled属性为true即为不可用状态。

JS

1
document.getElementByIdx("btn").disabled=true;

jquery

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

html

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

来自 http://www.jb51.net/article/53387.htm
普通分类: