我们常用的在a标签中有点击事件: a href="javascript:js_method();" 这是我们平台上常用的方法,但是这种方法在传递this等参数的时候很容易出问题,而且javascript:协议作为a的href属性的时候不仅会导致不必要的触发window.onbeforeunload事件,在IE里面更会使gif动画图片停止播放.W3C标准不推荐在href里面执行javascript语句 a href="javascript:void(0);" oncl
代码: <html> <head> <title>js标签属性的添加</title> <script > function setxxx(){ alert("xx"); var box = document.getElementById("box"); var oLi = document.createElement("li"); var oH3 = document.createEle