Posted in Javascript onJuly 25, 2009
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;
html元素如下:<input id="testButton" type="button" value="testButton" />
javascript 一个函数对同一元素的多个事件响应
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@