标签:int 比较 html 还原 使用 自定义 nts question cursor
button类控件可以使用attr("disabled","disabled")控制不可用,
但是a标签这样处理就不能达到效果了。
修改href值控制点击的话,还原href的值则不好还原了。
可以这样处理$("a").addClass("disabled");
其中disabled为自定义的css
.disabled{
pointer-events:none;
cursor:default;
}
注:该解决方案是网上查阅得到的(http://stackoverflow.com/questions/28318057/html-how-to-disable-a-href)
标签:int 比较 html 还原 使用 自定义 nts question cursor
原文地址:http://www.cnblogs.com/shuhdad/p/6344016.html