标签:new style button 不同 man att rem cti alert
function a(){
alert("a");
}
function b(){
alert("b");
}
<input type="button" onclick="a()" />
要将button的onclick改为b()方法,最保险的做法是:
$("input[type=button]").removeAttr("onclick").attr("onclick","b()");
在不同浏览器中(ie),很有可能直接给onclick赋值并不能取代前方法,先移除onclick再添加,有利于浏览器的兼容性。
标签:new style button 不同 man att rem cti alert
原文地址:https://www.cnblogs.com/zhoushiya/p/12107293.html