ホームページ >ウェブフロントエンド >jsチュートリアル >イベント バインディング onclick && addEventListener_javascript スキルの小規模なテスト

イベント バインディング onclick && addEventListener_javascript スキルの小規模なテスト

WBOY
WBOYオリジナル
2016-05-16 18:03:581487ブラウズ

開発ツールには対応する関数があるはずなので、テストしました:
前提: これは単なる簡単なテストであり、addEventListener は標準のバインディング関数であり、IE ではこれと互換性がありません (対応する IE はattachEvent) ) なので、今回は テストのために、最初に IE を放棄し、Firefox 5.0.1、Chrome 14.0、Opera 11.50 を使用します
テスト ページ:

コードをコピーします コードは次のとおりです:



/title> <br><style type= "text/css"><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></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>声明:</span><div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div></div></div><div class="nphpSytBox"><span>前の記事:<a class="dBlack" title="ドラッグ アンド ドロップによって画像を動的に変更するための jQuery Flex コード_jquery" href="https://m.php.cn/ja/faq/19852.html">ドラッグ アンド ドロップによって画像を動的に変更するための jQuery Flex コード_jquery</a></span><span>次の記事:<a class="dBlack" title="ドラッグ アンド ドロップによって画像を動的に変更するための jQuery Flex コード_jquery" href="https://m.php.cn/ja/faq/19854.html">ドラッグ アンド ドロップによって画像を動的に変更するための jQuery Flex コード_jquery</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>関連記事</h2><em><a href="https://m.php.cn/ja/article.html" class="bBlack"><i>続きを見る</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/ja/faq/1609.html" title="Bootstrap リスト グループ コンポーネントの詳細な分析" class="aBlack">Bootstrap リスト グループ コンポーネントの詳細な分析</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1640.html" title="JavaScript関数のカリー化の詳細説明" class="aBlack">JavaScript関数のカリー化の詳細説明</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1949.html" title="JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)" class="aBlack">JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/2248.html" title="Angularjs は WeChat UI (weui) を統合します" class="aBlack">Angularjs は WeChat UI (weui) を統合します</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/2351.html" title="JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル" class="aBlack">JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p></div><div class="footermid"><a href="https://m.php.cn/ja/about/us.html">私たちについて</a><a href="https://m.php.cn/ja/about/disclaimer.html">免責事項</a><a href="https://m.php.cn/ja/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body></html>