首先说一下这2个标签的区别:

  1. <button></button>H5中默认的类型是submit,好像其他的是button

  2. <input type="button">需要指定类型,所以建议用<input>标签做按钮

下面来说按钮置灰

<input  id="btn" type="button" disabled>    //按钮现在是灰色的

jquery操作:$("#btn").attr("disabled","true");    //按钮置灰

                 $("#btn").removeAttr("disabled");    //按钮恢复

按钮置灰可能有的时候不能用上面的方法(浏览器版本的问题) 

$("btn").attr("disabled","disabled");不支持true,false.


你可能感兴趣的:(