SoFunction
Updated on 2025-04-03

JavaScript uninstall mouse event code

//by xmg
<script>
function addEvent(obj,eventName,eventFunc){
 if() {
 (eventName,eventFunc);
 }else if(){
 eventName = ().replace(/on(.*)/i,'$1');
 (eventName,eventFunc,true);
 }
}
function delEvent(obj,eventName,eventFunc){
 if()
 (eventName,eventFunc)
 else if(){
 eventName = ().replace(/on(.*)/i,'$1');
 (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")
}
=function(){
 alert(1)
}
</script>
</BODY>
</HTML>