在html标签中设置按钮被禁用,可以使用如下代码
在jquery中可以使用attr()函数修改按钮的disable属性
添加disabled属性
$(‘#button’).attr(‘disabled’,”true”);
移除disabled属性1:
$(‘#button’).attr(‘disabled’,”true”);
移除disabled属性2:
$(‘#button’).removeAttr(“disabled”);
Post a comment now »
本文目前不可评论
Sorry, the comment form is closed at this time.
No comments yet.