国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

javascript之卸載鼠標(biāo)事件的代碼

2019-11-21 02:05:20
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
//by xmg
<script>
function addEvent(obj,eventName,eventFunc){
 if(obj.attachEvent) {
 obj.attachEvent(eventName,eventFunc);
 }else if(obj.addEventListener){
 eventName = eventName.toString().replace(/on(.*)/i,'$1');
 obj.addEventListener(eventName,eventFunc,true);
 }
}
function delEvent(obj,eventName,eventFunc){
 if(obj.detachEvent)
 obj.detachEvent(eventName,eventFunc)
 else if(obj.removeEventListener){
 eventName = eventName.toString().replace(/on(.*)/i,'$1');
 obj.removeEventListener(eventName,eventFunc,true);
 }
}
</script>
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<button onclick=addEvent(document,"onclick",test1)>add1</button><br>
<button onclick=delEvent(document,"onclick",test1)>del1</button><br>
<button onclick=addEvent(document,"onclick",test2)>add2</button><br>
<button onclick=delEvent(document,"onclick",test2)>del2</button><br>
<script>
function test1(){
 alert("test1")
}
function test2(){
 alert("test2")
}
document.onclick=function(){
 alert(1)
}
</script>
</BODY>
</HTML>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 沙河市| 额尔古纳市| 巴彦县| 南丰县| 长泰县| 白城市| 曲阜市| 石首市| 宁化县| 佳木斯市| 辽中县| 彭州市| 万安县| 阜城县| 吉林市| 湘潭县| 雅安市| 赫章县| 进贤县| 乐平市| 呼图壁县| 莱芜市| 南平市| 洞口县| 阜城县| 平度市| 湟源县| 渑池县| 镇宁| 大丰市| 山阴县| 宜丰县| 西吉县| 普陀区| 无极县| 建昌县| 呼图壁县| 桃江县| 时尚| 彭州市| 牙克石市|