# jQuery事件 - 1.on() ```js //1.事件類型type 2.selector 3.data 4.handle $('ul').on('click', 'li', function(e){ alert($(e.target).text()); });//點擊ul下的li元素觸發h ...
# jQuery事件
- 1.on() ```js //1.事件類型type 2.selector 3.data 4.handle $('ul').on('click', 'li', function(e){ alert($(e.target).text()); });//點擊ul下的li元素觸發handle事件
$('.demo').on({ click:function(){ console.log("click"); }, mouseenter:function(){ console.log("mouseenter"); }, mouseleave:function(){ console.log("mouseleave"); } });//為.demo元素綁定多個事件 ```
- 2.one() 事件只觸發一次 ```js //1.事件類型type 2.selector 3.data 4.handle $('ul').one('click', function(e){ alert($(e.target).text()); });//點擊ul下的li元素觸發handle事件 ```
- 3.off() 解綁事件 ```js $('.demo').off('click', clickTwo);//解綁點擊事件clickTwo; //最好前面怎樣綁定事件,後面怎樣解綁事件,參數一致 ```
- 4.trigger() 主動觸發事件(系統事件和自定義事件) ```js $('.demo').on('click', function(e, a, b, c, d){ console.log('click', a, b, c, d); }); $('.demo').trigger('click', [10, 20, 30, 40]);//觸發事件的時候可以傳遞參數 ```
- 5.hover() ```js $('demo').hover(function(){ console.log('hoverEnter'); },function(){ console.log('hoverLeave'); }); //等價於同時綁定mouseenter和mouseleave事件 $('.demo').on('mouseenter', function(){ console.log('enter'); }).on('mouseleave', function(){ console.log('leave'); }); ``` 以上是markdown格式的筆記 實現簡單的on()和trigger()函數:
(function () { //創建一個jQuery構造函數 function jQuery(selector) { return new jQuery.prototype.init(selector); } //為jQuery的原型添加init屬性,所有實例可以使用該屬性 jQuery.prototype.init = function (selector) { this.length = 0; //為this添加length屬性,並且賦值為0 //選出 dom 並且包裝成jQuery對象返回 //判斷selector是null 和 undefined 和 dom對象 和 id 和 class的情況 if (selector == null) { //判斷selector是null或undefined return this; } else if (typeof selector === 'string' && selector.indexOf('.') != -1) { //selector是class的情況 var dom = document.getElementsByClassName(selector.slice(1)); } else if (typeof selector === 'string' && selector.indexOf("#") != -1) { //selector是id的情況 var dom = document.getElementById(selector.slice(1)); } if (selector instanceof Element || dom.length == undefined) { //(selector是dom對象) || (selector是id,返回的是一個對象,對象沒有length屬性) this[0] = dom || selector; //(selector是id) || (selector是dom對象) this.length++; } else { //selector是class,返回的是一個類數組 for (var i = 0; i < dom.length; i++) { this[i] = dom[i]; this.length++; } } }; //為jQuery的原型添加css屬性,所有實例可以使用該屬性 jQuery.prototype.css = function (config) { for (var i = 0; i < this.length; i++) { for (var prop in config) { this[i].style[prop] = config[prop]; } } return this; //鏈式調用的精髓 }; //為jQuery對象的prevObject屬性賦值,從而可以使用end()方法 jQuery.prototype.pushStack = function (dom) { //dom是jQuery對象 if (dom.constructor != jQuery) { //dom是原生的dom對象 dom = jQuery(dom); //將原生dom對象包裹成jQuery對象 } dom.prevObject = this; //將 return dom; }; //為jQuery的原型添加get屬性,所有實例可以使用該屬性 jQuery.prototype.get = function (num) { //num == null 返回數組 //num >= 0 返回this[num] //num < 0 返回this[length + num] return (num != null) ? ((num >= 0) ? (this[num]) : (this[num + this.length])) : ([].slice(this, 0)); }; //為jQuery的原型添加get屬性,所有實例可以使用該屬性 jQuery.prototype.eq = function (num) { return this.pushStack(this.get(num)); //調用jQuery.prototype.get()函數獲取到dom對象,再封裝為jQuery對象並且為jQuery對象添加prevObject屬性 }; //為jQuery的原型添加add屬性,所有實例可以使用該屬性 jQuery.prototype.add = function (selector) { var curObj = jQuery(selector); //當前通過add添加的selector選中的jQuery對象 var prevObj = this; //調用add()的jQuery對象 var newObj = jQuery(); for (var i = 0; i < curObj.length; i++) { newObj[newObj.length++] = curObj[i]; } for (var i = 0; i < prevObj.length; i++) { newObj[newObj.length++] = prevObj[i]; } this.pushStack(newObj); //為jQuery對象添加prevObject屬性 return newObj; //將合併後的jQuery對象返回 }; //為jQuery的原型添加end屬性,所有實例可以使用該屬性 jQuery.prototype.end = function () { return this.prevObject; //直接返回前一個jQuery對象 }; //為jQuery的原型添加on屬性,所有實例可以使用該屬性 jQuery.prototype.on = function (type, handle) { for (var i = 0; i < this.length; i++) { if (!this[i].cacheEvent) {//判斷每一個原生dom對象中是否有事件 this[i].cacheEvent = {}; //為每一個原生的dom對象添加綁定事件 } if (!this[i].cacheEvent[type]) {//判斷每一個原生對象是否有type類型的綁定事件 this[i].cacheEvent[type] = [handle];//沒有則為該類型事件添加處理函數數組 } else { this[i].cacheEvent[type].push(handle);//若已經有該類型事件,則直接放入數組 } } }; //為jQuery的原型添加trigger屬性,所有實例可以使用該屬性 jQuery.prototype.trigger = function (type) { var self = this;//將調用trigger函數的jQuery對象存放在self中 var params = arguments.length > 1 ? [].slice.call(arguments, 1) : [];//判斷調用trigger()函數時是否傳入除了type以外的其他參數 for (var i = 0; i < this.length; i++) {//迴圈遍歷this if (this[i].cacheEvent[type]) {//判斷每個原生dom對象中是否存放有type類型的事件 this[i].cacheEvent[type].forEach(function (ele, index) {//有多個相同類型的事件時,要全部依次執行 ele.apply(self, params);//通過self調用事件,並且把參數傳入 }); } } }; //上面的jQuery構造函數是new 一個jQuery.prototype.init對象, //jQuery.prototype.init對象上沒有jQuery.prototype上的css()方法 //所以添加下麵一句,讓jQuery.prototype.init對象可以調用jQuery.prototype上的css()方法 jQuery.prototype.init.prototype = jQuery.prototype; //讓外部可以通過$()或者jQuery()調用 window.$ = window.jQuery = jQuery; }());myJquery.js 調用on()和trigger()函數:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .demo { width: 100px; height: 100px; background: yellow; } </style> </head> <body> <div class="demo"></div> <script src="./myJquery.js"></script> <script> $('.demo').on('click', function (a, b, c) { console.log("click1" + a + b + c); }); $('.demo').on('click', function (a) { console.log("click2" + a); }); $('.demo').trigger('click', 1, 2, 3); </script> </body> </html>index.html
效果展示: