javascript一个函数对同一元素的多个事件响应_javascript技巧: 代码如下: var testButton=document.getElementById(testButton); function handlerTest() { var oEvent=window.event;//for IE //var oEvent=arguments[0];// for DOM if(oEvent.type==click
导读javascript一个函数对同一元素的多个事件响应_javascript技巧: 代码如下: var testButton=document.getElementById(testButton); function handlerTest() { var oEvent=window.event;//for IE //var oEvent=arguments[0];// for DOM if(oEvent.type==click
代码如下: var testButton=document.getElementById("testButton"); function handlerTest() { var oEvent=window.event;//for IE //var oEvent=arguments[0];// for DOM if(oEvent.type=="click") { alert("click"); } else if(oEvent.type=="mouseover") { alert("mouseover"); } else { alert(oEvent.keycode); } } testButton.onclick=handlerTest; testButton.onmouseover=handlerTest;
javascript一个函数对同一元素的多个事件响应_javascript技巧: 代码如下: var testButton=document.getElementById(testButton); function handlerTest() { var oEvent=window.event;//for IE //var oEvent=arguments[0];// for DOM if(oEvent.type==click