当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jquery中的on方法使用介绍

jquery中的on方法使用介绍

2019年03月20日  | 移动技术网IT编程  | 我要评论

代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<title></title>
</head>
<body>
<input type="button" value="test" id="test"/>
<script type="text/javascript">
$(function(){
$("#test").hello({
"size":1
});
});
</script>
<script type="text/javascript">
;(function($){
$.fn.hello = function(options){
var defaults = {"size":0},

opts = $.extend({},defaults,options),

show = {
play:function(options){
var _root = this;
_root.autoplay();
_root.eventclick();
},
autoplay:function(){
console.log("auto");
},
eventclick:function(){
//$("#test").on("click",{show:"dd"},function(e){
// console.log("click :" + e.data.show);
//});

$("#test").on({
click:function(){
alert("click");
},
mouseenter:function(){
alert("enter");
},
mouseleave:function(){
alert("leave");
}
});
}
};
return this.each(function(){
show.play(opts);
});
};
})(jquery);
</script>
</body>
</html>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网