jQuery 之与 Zepto 的差别

jQuery 的意义是在于抹平 DOM、BOM、CSSOM 的多浏览器差别,并统一提供接口。它不能看成 Framework(框架)被使用,而是扮演 Utility(工具)的角色。css

虽然 Zepto 和 jQuery 的中的不少 API 的用法是类似的,但仍有一些 API 在用法上差别很大。下面就实际使用中遇到的场景作一下列举。html

建立 DOM 节点并赋予属性

使用 $ 操做符能够轻松建立节点并赋予属性,具体代码是 $(htmlString, attributes) ,支持链式写法。喜欢刨根问底的同窗能够看看下面的文档。jquery

DOM 操做的区别

jQuery 操做 ul 元素时,添加 id 不会生效。浏览器

// For example
// Add ul element to the body by jQuery
(function($) {
     $(function() {
        var $list = $('<ul><li>jQuery 插入</li></ul>', {
            id: 'insert-by-jquery'
        });
        $list.appendTo($('body'));
    });
})(window.jQuery);

// Result
// <ul><li>jQuery 插入</li></ul>

Zepto 操做 ul 元素时,添加 id 生效。app

// For example
// Add ul element to the body by Zepto
Zepto(function($) {  
    var $list = $('<ul><li>Zepto 插入</li></ul>', {
        id: 'insert-by-zepto'
    });
    $list.appendTo($('body'));
});

// Result
// <ul id="insert-by-zepto"><li>Zepto 插入</li></ul>

事件触发的区别

(function($) {
    $(function() {    
        $script = $('<script />', {
            src: 'http://cdn.amazeui.org/amazeui/1.0.1/js/amazeui.js',
            id: 'ui-jquery'
        });

        $script.appendTo($('body'));

        $script.on('load', function() {
            console.log('jQ script loaded');
        });
    });
})(window.jQuery);

使用 jQuery 时 load 事件的处理函数不会执行。框架

Zepto(function($) {  
    $script = $('<script />', {
        src: 'http://cdn.amazeui.org/amazeui/1.0.1/js/amazeui.js',
        id: 'ui-zepto'
    });

    $script.appendTo($('body'));

    $script.on('load', function() {
        console.log('zepto script loaded');
    });
});

使用 Zepto 时 load 事件的处理函数会执行。less

事件委托的区别

var $doc = $(document);

// Class 'a' bind event 'a'
$doc.on('click', '.a', function () {
    alert('a事件');
    // Class 'a' change to class 'b'
    $(this).removeClass('a').addClass('b');
});

// Class 'b' bind event 'b'
$doc.on('click', '.b', function () {
    alert('b事件');
});

在 Zepto 中,当 a 被点击后,依次弹出了内容为”a事件“和”b事件“的弹出框。说明虽然事件委托在.a上但是却也触发了.b上的委托。可是在 jQuery 中只会触发 .a 上面的委托。函数

原理分析

// Zepto source code
$.fn.on = function(event, selector, data, callback, one) {
    var autoRemove, delegator, $this = this
    if (event && !isString(event)) {
        // Core code
        $.each(event, function (type, fn) {
            $this.on(type, selector, data, fn, one)
        }) return $this
    }
    //...
}

在 Zepto 中代码解析的时候,document上全部的click委托事件都依次放入到一个队列中,点击的时候先看当前元素是否是.a,符合则执行,而后查看是否是.b,符合则执行。

这样的话,就致使若是.a的事件在前面,会先执行.a事件,而后class更改为bZepto再查看当前元素是否是.b,以此类推。

在 jQuery 中代码解析的时候,document上委托了2个click事件,点击后经过选择符进行匹配,执行相应元素的委托事件。

这样就很好的避免了在 Zepto 中的发生的状况。

API 方面的区别

width()height() 的区别

  • Zepto 由盒模型(box-sizing)决定;

  • jQuery 会忽略盒模型,始终返回内容区域的宽/高(不包含padding、border)。

jQuery官方的说明:

Note that .width() will always return the content width, regardless of the value of the CSS box-sizing property. As of jQuery 1.8, this may require retrieving the CSS width plus box-sizing property and then subtracting any potential border and padding on each element when the element has box-sizing: border-box . To avoid this penalty, use .css("width") rather than .width() .

解决方式就是使用 .css('width') 而不是 .width() 。下面咱们举个叫作《边框三角形宽高的获取》的栗子来讲明这个问题。

首先用下面的 HTML 和 CSS 画了一个小三角形吧。

// html
<div class="caret"></div>

// css
.caret {
    width: 0;
    height: 0;
    border-width: 0 20px 20px;
    border-color: transparent transparent blue; 
    border-style: none dotted solid;
}
  • jQuery 使用 .width().css('width') 都返回 ,高度也同样;

  • Zepto 使用 .width() 返回 ,使用 .css('width') 返回 0px 。
    因此,这种场景,jQuery 使用 .outerWidth() / .outerHeight() ;Zepto 使用 .width() / .height()

offset() 的区别

// offset() {function}

// @desc Zepto
// @return top|left|width|height

// @desc jQuery
// @return width|height

获取隐藏元素widthheight的区别

Zepto 没法获取隐藏元素宽高,jQuery 能够

extend() 的区别

jQuery 在原型上拓展方法使用的方式是:

// For example
// Extend a function named 'sayHello' to the protorype of jQuery
(function($) {
    $.fn.extend({
        sayHello: function() {
            $(this).html('Hello !');
        }
    });
})(window.jQuery);

Zepto 中并无为原型定义extend方法,因此若是要是要在 Zepto 的原型上拓展方法可使用的方式是:

// For example
// Extend a function named 'sayHello' to the protorype of Zepto
Zepto(function($) {
    sayHello: function() {
        $(this).html('Hello !');
    }
});

碎碎念

随着 jQuery 2.x 的发布以及将来 3.0 对浏览器支持的划分,彷佛找不到再使用 Zepto 的理由了。若是你真在意文件大小,那你能够自行打包 jQuery 中须要的模块。这和 Zepto 是同样的,Zepto 官方提供的版本只打包了很基础的模块。

参考资料

相关文章
相关标签/搜索