真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么寫一款屬于自己的JS類庫

這篇文章主要講解了“怎么寫一款屬于自己的JS類庫”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么寫一款屬于自己的JS類庫”吧!

創(chuàng)新互聯(lián)公司長期為上千家客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為額敏企業(yè)提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站建設,額敏網(wǎng)站改版等技術(shù)服務。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。

API介紹和效果展示

事件綁定 Xuery.on(eventName, fn) 案例如下:

Xuery('#demo').on('click', function(e){     alert('hello world!') })

訪問和設置css Xuery.css(string|object, ?[string]) 案例如下:

// 訪問css Xuery('#demo').css('width') // 設置css Xuery('#demo').css('width', '1024px') // 設置css Xuery('#demo').css({     width: '1024px',     height: '1024px' })

訪問和設置屬性 Xuery.attr(string|object, ?[string]) 案例如下:

// 訪問attr Xuery('#demo').attr('title') // 設置attr Xuery('#demo').attr('title', '1024px') // 設置attrs Xuery('#demo').attr({     title: '1024px',     name: '1024px' })

訪問和設置html 案例如下:

// 訪問 Xuery('#demo').html() // 設置 Xuery('#demo').html('前端學習原生框架')

還有其他幾個常用的API在這里就不介紹了,大家可以在我的github上查看,或者基于這套基礎框架,去擴展屬于自己的js框架。

核心源碼

以下源碼相關(guān)功能我做了注釋,建議大家認真閱讀,涉及到原型鏈和構(gòu)造函數(shù)的指向的問題,是實現(xiàn)上述調(diào)用方式的核心,又不懂可以在評論區(qū)交流溝通。

/**  * 鏈模式實現(xiàn)自己的js類庫  */ (function(win, doc){     var Xuery = function(selector, context) {         return new Xuery.fn.init(selector, context)     };      Xuery.fn = Xuery.prototype = {     constructor: Xuery,     init: function(selector, context) {         // 設置元素長度         this.length = 0;         // 默認獲取元素的上下文document         context = context || document;         // id選擇符,則按位非將-1轉(zhuǎn)化為0         if(~selector.indexOf('#')) {         this[0] = document.getElementById(selector.slice(1));         this.length = 1;         }else{         // 在上下文中選擇元素         var doms = context.getElementsByTagName(selector),         i = 0,         len = doms.length;         for(; i=0;i--){             this[i].addEventListener(type, fn, false)             }             return this         }         // ie瀏覽器dom2級事件         }else if(document.attachEvent){         return function(type, fn){             var i = this.length -1;             for(; i>=0;i--){             this[i].addEvent('on'+type, fn)             }             return this         }         // 不支持dom2的瀏覽器         }else{         return function(type, fn){             var i = this.length -1;             for(; i>=0;i--){             this[i]['on'+type] = fn;             }             return this         }         }     })()     })      // 將‘-’分割線轉(zhuǎn)換為駝峰式     Xuery.extend({     camelCase: function(str){         return str.replace(/\-(\w)/g, function(all, letter){         return letter.toUpperCase();         })     }     })      // 設置css     Xuery.extend({     css: function(){         var arg = arguments,         len = arg.length;         if(this.length < 1){         return this         }         if(len === 1) {         if(typeof arg[0] === 'string') {             if(this[0].currentStyle){             return this[0].currentStyle[arg[0]];             }else{             return getComputedStyle(this[0], false)[arg[0]]             }         }else if(typeof arg[0] === 'object'){             for(var i in arg[0]){             for(var j=this.length -1; j>=0; j--){                 this[j].style[Xuery.camelCase(i)] = arg[0][i];             }             }         }         }else if(len === 2){         for(var j=this.length -1; j>=0; j--){             this[j].style[Xuery.camelCase(arg[0])] = arg[1];         }         }         return this     }     })      // 設置屬性     Xuery.extend({     attr: function(){         var arg = arguments,         len = arg.length;         if(len <1){         return this         }         if(len === 1){         if(typeof arg[0] === 'string'){             return this[0].getAttribute(arg[0])         }else if(typeof arg[0] === 'object'){             for(var i in arg[0]){             for(var j=this.length -1; j>= 0; j--){                 this[j].setAttribute(i, arg[0][i])             }             }         }         }         else if(len === 2){         for(var j=this.length -1; j>=0; j--){             this[j].setAttribute(arg[0], arg[1]);         }         }         return this     }     })      // 獲取或者設置元素內(nèi)容     Xuery.fn.extend({     html: function(){         var arg = arguments,         len = arg.length;         if(len === 0){         return this[0] && this[0].innerHTML         }else{         for(var i=this.length -1; i>=0; i--){             this[i].innerHTML = arg[0];         }         }         return this     }     })      Xuery.fn.init.prototype = Xuery.fn;     window.Xuery = Xuery; })(window, document);

感謝各位的閱讀,以上就是“怎么寫一款屬于自己的JS類庫”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對怎么寫一款屬于自己的JS類庫這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!


網(wǎng)頁名稱:怎么寫一款屬于自己的JS類庫
URL網(wǎng)址:http://weahome.cn/article/gceege.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部