1、選取DOM元素php
jQuery的核心是經過各類選擇器,選中DOM元素,能夠用querySelectorAll方法模擬這個功能。css
var $ = document.querySelectorAll.bind(document);html
這裏須要注意的是,querySelectorAll方法返回的是NodeList對象,它很像數組(有數字索引和length屬性),但不是數組,不能使用pop、push等數組特有方法。若是有須要,能夠考慮將Nodelist對象轉爲數組。node
myList = Array.prototype.slice.call(myNodeList);jquery
2、DOM操做git
DOM自己就具備很豐富的操做方法,能夠取代jQuery提供的操做方法。github
尾部追加DOM元素。web
// jQuery寫法
$(parent).append($(child));ajax// DOM寫法
parent.appendChild(child)數組
頭部插入DOM元素。
// jQuery寫法
$(parent).prepend($(child));// DOM寫法
parent.insertBefore(child, parent.childNodes[0])
刪除DOM元素。
// jQuery寫法
$(child).remove()// DOM寫法
child.parentNode.removeChild(child)
3、事件的監聽
jQuery的on方法,徹底能夠用addEventListener模擬。
Element.prototype.on = Element.prototype.addEventListener;
爲了使用方便,能夠在NodeList對象上也部署這個方法。
NodeList.prototype.on = function (event, fn) {
[]['forEach'].call(this, function (el) {
el.on(event, fn);
});
return this;
};
4、事件的觸發
jQuery的trigger方法則須要單獨部署,相對複雜一些。
Element.prototype.trigger = function (type, data) {
var event = document.createEvent('HTMLEvents');
event.initEvent(type, true, true);
event.data = data || {};
event.eventName = type;
event.target = this;
this.dispatchEvent(event);
return this;
};
在NodeList對象上也部署這個方法。
NodeList.prototype.trigger = function (event) {
[]['forEach'].call(this, function (el) {
el['trigger'](event);
});
return this;
};
5、document.ready
目前的最佳實踐,是將JavaScript腳本文件都放在頁面底部加載。這樣的話,其實document.ready方法(jQuery簡寫爲$(function))已經沒必要要了,由於等到運行的時候,DOM對象已經生成了。
6、attr方法
jQuery使用attr方法,讀寫網頁元素的屬性。
$("#picture").attr("src", "http://url/to/image");
DOM元素容許直接讀取屬性值,寫法要簡潔許多。
$("#picture").src = "http://url/to/image";
須要注意,input元素的this.value返回的是輸入框中的值,連接元素的this.href返回的是絕對URL。若是須要用到這兩個網頁元素的屬性準確值,能夠用this.getAttribute('value')和this.getAttibute('href')。
7、addClass方法
jQuery的addClass方法,用於爲DOM元素添加一個class。
$('body').addClass('hasJS');
DOM元素自己有一個可讀寫的className屬性,能夠用來操做class。
document.body.className = 'hasJS';
// or
document.body.className += ' hasJS';
HTML 5還提供一個classList對象,功能更強大(IE 9不支持)。
document.body.classList.add('hasJS');
document.body.classList.remove('hasJS');
document.body.classList.toggle('hasJS');
document.body.classList.contains('hasJS');
8、CSS
jQuery的css方法,用來設置網頁元素的樣式。
$(node).css( "color", "red" );
DOM元素有一個style屬性,能夠直接操做。
element.style.color = "red";;
// or
element.style.cssText += 'color:red';
9、數據儲存
jQuery對象能夠儲存數據。
$("body").data("foo", 52);
HTML 5有一個dataset對象,也有相似的功能(IE 10不支持),不過只能保存字符串。
element.dataset.user = JSON.stringify(user);
element.dataset.score = score;
10、Ajax
jQuery的Ajax方法,用於異步操做。
$.ajax({
type: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
咱們能夠定義一個request函數,模擬Ajax方法。
function request(type, url, opts, callback) {
var xhr = new XMLHttpRequest();
if (typeof opts === 'function') {
callback = opts;
opts = null;
}xhr.open(type, url);
var fd = new FormData();
if (type === 'POST' && opts) {
for (var key in opts) {
fd.append(key, JSON.stringify(opts[key]));
}
}xhr.onload = function () {
callback(JSON.parse(xhr.response));
};xhr.send(opts ? fd : null);
}
而後,基於request函數,模擬jQuery的get和post方法。
var get = request.bind(this, 'GET');
var post = request.bind(this, 'POST');
11、動畫
jQuery的animate方法,用於生成動畫效果。
$foo.animate('slow', { x: '+=10px' });
jQuery的動畫效果,很大部分基於DOM。可是目前,CSS 3的動畫遠比DOM強大,因此能夠把動畫效果寫進CSS,而後經過操做DOM元素的class,來展現動畫。
foo.classList.add('animate');
若是須要對動畫使用回調函數,CSS 3也定義了相應的事件。
el.addEventListener("webkitTransitionEnd", transitionEnded);
el.addEventListener("transitionend", transitionEnded);
12、替代方案
因爲jQuery體積過大,替代方案層出不窮。
其中,最有名的是zepto.js。它的設計目標是以最小的體積,作到最大兼容jQuery的API。zepto.js 1.0版的原始大小是55KB,優化後是29KB,gzip壓縮後爲10KB。
若是不求最大兼容,只但願模擬jQuery的基本功能,那麼,min.js優化後只有200字節,而dolla優化後是1.7KB。
此外,jQuery自己採用模塊設計,能夠只選擇使用本身須要的模塊。具體作法參見它的github網站,或者使用專用的Web界面。
本文轉自 http://www.ruanyifeng.com/blog/2013/05/jquery-free.html