如何使用 jQuery 对 DOM 元素绑定所有事件?
bind( type, [data], fn ) 方法为每个匹配元素绑定到一个或多个事件(如单击)。它还可以绑定自定义事件。
可能的事件值 − blur、focus、load、resize、scroll、unload、click 等。
以下是此方法使用的所有参数的说明 −
- type − 一个或多个以空格分隔的事件类型。
- data − 这是可选参数,表示作为 event.data 传递给事件处理程序的其他数据。
- fn − 在匹配元素集中的每个元素上绑定到事件的函数。
示例
你可以尝试运行以下代码以了解如何对 DOM 元素绑定所有事件
<html> <head> <title>jQuery bind()</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $('div').bind('click', function(event){ alert('Hi there!'); }); }); </script> <style> .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } </style> </head> <body> <p>Click on any square below to see the result:</p> <div class = "div" style = "background-color:blue;"></div> <div class = "div" style = "background-color:green;"></div> <div class = "div" style = "background-color:red;"></div> </body> </html>
广告