jQuery 事件 - bind() 方法
转自:http://www.w3school.com.cn/jquery/event_bind.asp
bind() 方法为被选元素添加一个或多个事件处理程序,并规定事件发生时运行的函数。
实例:
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").bind({
click:function(){$("p").slideToggle();},
mouseover:function(){$("body").css("background-color","red");},
mouseout:function(){$("body").css("background-color","#FFFFFF");}
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<button>请点击这里</button>
</body>
</html>