jQuery-将处理程序绑定到多个事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-将处理程序绑定到多个事件相关的知识,希望对你有一定的参考价值。
One bind event, multiple events. Handy.
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="../assets/js/jquery.js"></script> <script type="text/javascript"> $(function () { $('.box').bind('click mouseover', function(e){ alert('event'); }); }) </script> </head> <body> <style type="text/css"> .box {width:50px;height:50px;display:block;background:red;margin:20px;border:1px solid #ccc;} </style> <a href="#" id="animate">Animate</a> <div class="box"></div> <div class="box"></div> </body> </html>
以上是关于jQuery-将处理程序绑定到多个事件的主要内容,如果未能解决你的问题,请参考以下文章