码迷,mamicode.com
首页 > Web开发 > 详细

jquery里的on方法使用

时间:2016-11-29 07:05:27      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:cti   min   head   优秀   function   query   console   jquer   back   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="js/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script>
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.divbox{
width:300px;
height: 200px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="divbox">
<img src="img/f1.jpg"/>
</div>
<p>我是罗桂鑫,我要成为一名优秀的前端工程师</p>
<script type="text/javascript">
$(function(){
$(".divbox").on("click",show);
function show(){
console.log("fsfsf") //绑定一个事件
}
$(".divbox").off("click"); //移除on所绑定的方法



$(".divbox").on("click mouseover",show);
function show(){
console.log("fsfsf") //不同事件绑定同个方法
}


$(".divbox").on({
mouseover:show,
mouseout:hide
})
function show(){
$("p").css({"backgroundColor":"#ff0000"})
} //不同事件绑定不同方法
function hide(){
$("p").css({"backgroundColor":"#fff"})
}


//注意:使用on方法必须使用jquery1.7版本以上才有效。。
})

</script>
</body>
</html>

jquery里的on方法使用

标签:cti   min   head   优秀   function   query   console   jquer   back   

原文地址:http://www.cnblogs.com/luoguixin/p/6111887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!