開発ツールには対応する関数があるはずなので、テストしました: 前提: これは単なる簡単なテストであり、addEventListener は標準のバインディング関数であり、IE ではこれと互換性がありません (対応する IE はattachEvent) ) なので、今回は テストのために、最初に IE を放棄し、Firefox 5.0.1、Chrome 14.0、Opera 11.50 を使用します テスト ページ: コードをコピーします コードは次のとおりです: /title> <BR>.test { <BR>背景色: #FFF; <BR>高さ: 100px; <BR>幅: 100px; <BR>マージン: 0 10px 0; <BR><BR>} <BR></head><BR> <BR><div id="test1" class="test" onclick="console.log('test1 : click!');" onmouseover="console.log('test1 : Mouseover!');">テスト 1</div> <br><div id="test2" class="test">TEST2</div> <br><div id="test3" class="test"><script type="text /javascript"> <br>(function(){ <br>var $ = function(o){//簡易ツール <br>return document.getElementById(o); <br>} <br>//Test2 の場合: <br>$('test2').onclick = function(){console.log('test2 : click!');} <br>$('test2') .onmouseover = function(){console.log( 'test2 : Mouseover!');} <br>//Test3 の場合: <br>$('test3').addEventListener('click', function(){ <br>console.log('test3 : click!' ); <br>}, false); <br>$('test3').addEventListener('mouseover', function(){ <br>console.log('test3 : マウスオーバー!'); <br>})(); <br></html> 🎜> <br> <p>页面效果如下截图:</p> <p> <img src="http://files.jb51.net/upload/201107/20110731233144777.png" border="0" alt="イベント バインディング onclick && addEventListener_javascript スキルの小規模なテスト" ></p> <p>测试代码中采用了三种最常见的事件绑定方法</p> <p>FIREFOX:</p> <p>1,Firefox 的 Firebug 中选中<strong> test1 </strong>元素:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028556.png" style="max-width:90%" border="0"> </p> <p>右侧 DOM 标签中选择显示所有属性:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028301.png" style="max-width:90%" border="0"> </p> <p>在其中找到了 attributes 数组,如下:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028825.png" style="max-width:90%" border="0"> </p> <p>这是因为 test1 元素的两个事件句柄直接写到了元素中,再往下的列表中找不到更多相关的信息,此种绑定模式下只能在 firebug 的 DOM 标签的 attributes 中找到事件句柄。</p> <p>2,选中<strong> test2</strong> 元素:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028602.png" style="max-width:90%" border="0"> </p> <p>右侧 DOM 标签:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028132.png" style="max-width:90%" border="0"> </p> <p></p> <p>test2 采用在 javascript 中绑定事件句柄的方式,被作为“用户自定义属性”显示在了 DOM 标签中,右击鼠标可以查看相关信息:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028317.png" style="max-width:90%" border="0"> </p> <p>3,选中 <strong>test3 </strong>元素:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028974.png" style="max-width:90%" border="0"> </p> <p>这次在 DOM 标签中没有找到任何相关此元素绑定事件的信息。。。</p> <p></p> <p>总而言之,firebug 中<strong>在标准绑定事件函数下</strong>(addEventListener),并不好检测到某个元素已绑定的事件函数,(不要说尝试打印一下那个元素的 onclick 属性,addEventListener 绑定和 onclick 绑定毫不相干,此种情况下你会得到 nudefined);如果是<strong>在前两种事件绑定下</strong>,可以得到一些简单信息。</p> <p>-----</p> <p>OPERA:</p> <p>1,在 Opera 的 Dragonfly 中选中 <strong>test1 :</strong></p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028363.png" style="max-width:90%" border="0"> </p> <p>在右方的属性列表中可以找到相关的信息:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028301.png" style="max-width:90%" border="0"> </p> <p>点击加号同样可以查看绑定的函数信息:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028558.png" style="max-width:90%" border="0"> </p> <p>想查看某个函数体的话,有一种简单的方法,在控制台中直接输入:</p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028490.png" style="max-width:90%" border="0"> </p> <p>直接就打印出函数体,更加的方便!</p> <p>2,选择 <strong>test2 </strong>和<strong> test1</strong> 几乎相同,就不在赘述了;</p> <p>3,选择 <strong>test3:</strong></p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028905.png" style="max-width:90%" border="0"> </p> <p>右側の属性タグには何も見つかりません。onclick と onmouseover の値は両方とも null です。 </p> <p>要するに、Opera Dragonfly と Firefox Firebug は同様に動作しますが、標準のバインディング関数でどのイベントが要素にバインドされているかはあまり明確ではありません。 </p> <p>-----</p> <p>クローム:</p> <p>Chrome ではより明確です: </p> <p>1、デバッグ ツール <strong></strong> で </p>test1 (または test2、これら 2 つは似ています) を選択します。 <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028982.png" style="max-width:90%" border="0"> </p> <p>右側の情報ビットを見てください: </p> <p><img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028243.png" style="max-width:90%" border="0"> </p> Chrome の <p><strong>イベント リスナー</strong> は、現在選択されている要素にバインドされているリスニング関数を直接リストする優れたツールです。小さな黒い三角形をクリックすると、バインドされた関数の情報が表示されます。 > </p> <p> <img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028969.png" style="max-width:90%" border="0"> </p>click には 2 つの項目があります。最初の項目は div#test1 であり、2 番目の項目である document は表示する必要はありません (Chrome 独自の処理)。 <p></p>isAttribute: true: <p>この onclick 関数ハンドルが要素属性として扱われることを示します (test1 か test2 かに関係なく、onclick = function(){…} を使用するため);<strong> </strong></p>lineNumber: 18: <p> はバインドされた関数の場所を示します。 <strong></strong>useCapture: false :</p> 他のセマンティクスは非常に強力なので、説明しません。 <p>同様に、<strong>Properties</strong> の最初の HTMLDivElement リストでは、test1 と test2 の両方が次のように表示されます。 </p> <p><strong> </strong> </p>2、<p>test3<img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028338.png" style="max-width:90%" border="0"> を選択します: </p> <p><strong> </strong> </p> <p> <img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028218.png" style="max-width:90%" border="0"></p> <p></p> <p></p> <p></p> <p></p> <p></p> <p></p> <p></p> <p></p> <p>プロパティでは、onclick と onmouseover の両方が null になりますが、イベント リスナーは引き続き次のとおりです。</p> <p></p> <p> </p>ただし、div#test3:<p> に注意してください。 <img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028340.png" style="max-width:90%" border="0"></p> <p> </p>onclick 属性を使用せず、addEventListener を使用するため、isAttribute は false になります。 <p> <img title="image" style="max-width:90%" style="max-width:90%" alt="image" src="http://files.jb51.net/upload/201107/20110731233028889.png" style="max-width:90%" border="0"></p> <p></p> <p>まずこれらを覚えておいてください!ちょっと文章汚いですね~</p> <p></p> </div> </div>