jQuery HTML/CSS操作

参考http://www.runoob.com/jquery/jquery-ref-html.html

jQuery属性操作

<!--定义按钮-->
<input type="submit" id="submit"  value="上传">

//禁用按钮
$("#submit").attr({"disabled" : "disabled"});

//取消按钮禁用
$("#submit").removeAttr("disabled");
posted on 2017-07-17 09:09  dreamstar  阅读(47)  评论(0编辑  收藏  举报