この記事では、マウス クリック、パス、マウス リーブ イベントの HTML 実装方法について説明します。以下は完全な HTML サンプル コードです
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript"> var a,b,c; a=100;b=200; c=a;a=b;b=c; console.log(a,b); alert(a+" "+b); window.onload=function(){ var sj; sj=document.getElementById("a"); sj.style.color="pink"; sj.style.width="100px"; sj.style.lineHight="30px"; sj.style.lineHight="30px"; sj.style.textAlign="center"; sj.style.background="purple"; } </script> </head> <body> <p onclick="alert('php中文网html实例')">点击有惊喜!</p> <marquee onmouseover="this.stop()"onmouseout="this.start()">我是php中文网(www.php.cn)!</marquee> <p onclick="alert('别人都叫我小猪')" id="a">请叫我钟老师</p> </body> </html>
マウス クリック、パス、マウス リーブ イベントの表示効果:
。
以上がマウスのクリック、通過、およびマウスの離脱イベントの完全な HTML サンプル コード (図)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。