看到有网友寻找解决按钮不可用的方法,这里简单写一下。
html代码如下
<button id="myButton">按钮</button>
css代码如下
#myButton{background: #acacac; border: 1px solid #898989;}
jquery代码如下
$("#myButton").attr("disabled","true");
或者
$("#myButton").attr("disabled","true");
标签:jquery,attr,不可,myButton,disabled,按钮,true
From: https://blog.51cto.com/u_11365839/9542099