JavaScript 的核心是支持面向對象的,同時它也提供了強大靈活的 OOP 語言能力。本文將使用面向對象的方式,來教你們用原生js寫出一個相似jQuery這樣的類庫。咱們將會學到以下知識點:css
接下來我會對類庫的核心api進行講解和展現,文章最後後附帶類庫的完整源碼,在我以前的文章《3分鐘教你用原生js實現具備進度監聽的文件上傳預覽組件》中也使用了相似的方式,感興趣的能夠一塊兒學習,交流。html
更加完整的類庫地址,請移步github《Xuery——仿jquery API風格的輕量級可擴展的原生js框架》前端
Xuery('#demo').on('click', function(e){
alert('hello world!')
})
複製代碼
// 訪問css
Xuery('#demo').css('width')
// 設置css
Xuery('#demo').css('width', '1024px')
// 設置css
Xuery('#demo').css({
width: '1024px',
height: '1024px'
})
複製代碼
// 訪問attr
Xuery('#demo').attr('title')
// 設置attr
Xuery('#demo').attr('title', '1024px')
// 設置attrs
Xuery('#demo').attr({
title: '1024px',
name: '1024px'
})
複製代碼
// 訪問
Xuery('#demo').html()
// 設置
Xuery('#demo').html('前端學習原生框架')
複製代碼
還有其餘幾個經常使用的API在這裏就不介紹了,你們能夠在個人github上查看,或者基於這套基礎框架,去擴展屬於本身的js框架。vue
如下源碼相關功能我作了註釋,建議你們認真閱讀,涉及到原型鏈和構造函數的指向的問題,是實現上述調用方式的核心,又不懂能夠在評論區交流溝通。jquery
/**
* 鏈模式實現本身的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轉化爲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<len; i++){
this[i] = doms[i];
}
}
this.context = context;
this.selector = selector;
return this
},
// 加強數組
push: [].push,
sort: [].sort,
splice: [].splice
};
// 方法擴展
Xuery.extend = Xuery.fn.extend = function(){
// 擴展對象從第二個參數算起
var i = 1,
len = arguments.length,
target = arguments[0],
j;
if(i === len){
target = this;
i--;
}
// 將參數對象合併到target
for(; i<len; i++){
for(j in arguments[i]){
target[j] = arguments[i][j];
}
}
return target
}
// 擴展事件方法
Xuery.fn.extend({
on: (function(){
if(document.addEventListener){
return function(type, fn){
var i = this.length -1;
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
}
}
})()
})
// 將‘-’分割線轉換爲駝峯式
Xuery.extend({
camelCase: function(str){
return str.replace(/\-(\w)/g, function(all, letter){
return letter.toUpperCase();
})
}
})
// 設置css
Xuery.fn.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.fn.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
}
})
// 獲取或者設置元素內容
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);
複製代碼
歡迎關注下方公衆號,獲取更多前端知識精粹和學習社羣: git
在公衆號點擊進羣,能夠加入vue學習小組,一塊兒學習前端技術;回覆學習路徑,將獲取筆者多年從業經驗的前端學習路徑的思惟導圖;github