Home > Article > Web Front-end > Are jquery and zepto the same?
jquery and zepto are different. Although both are JavaScript libraries, there are differences: 1. When the Dom operation adds an id, jquery will not take effect, but Zepto will take effect; 2. jquery will not execute the processing function of the load event, while zepto will execute the processing function of the load event. .
The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.
jquery and zepto are different
##jquery:
zepto:
Zepto is a lightweight JavaScript library specially launched for modern smartphone browsers. Its file size Only about 10K, compatible with modern advanced browsers, mainly used for mobile development, it has an API similar to jQuery. As the zepto official website says, if you can use jQuery, then you will also use zepto.Same points:
Zepto was originally a library developed for mobile and is a lightweight alternative to jQuery because of its API Similar to jQuery, but smaller file size. The biggest advantage of Zepto is its file size, which is only over 8k. It is the smallest among the currently fully functional libraries. Although it is not large, the tools provided by Zepto are sufficient to meet the needs of developing programs. Most of the commonly used APIs and methods in jQuery are available in Zepto, and there are some in Zepto that are not found in jQuery. In addition, because most of Zepto's APIs are compatible with jQuery, it is extremely easy to use. If you are familiar with jQuery, you can easily master Zepto. You can reuse many methods in jQuery in the same way, and you can also string methods together to get more concise code, without even looking at its documentation.Differences:
1. IE browser support
For mobile programs , Zepto has some basic touch events that can be used for touch screen interaction (tap events, swipe events). Zepto does not support IE browser. This is not because Zepto developer Thomas Fucks is confused about cross-browser issues, but It is a decision made after careful consideration to reduce file size, just like the jQuery team no longer supports older versions of IE (6 7 8) in version 2.0. Because Zepto uses jQuery syntax, it recommends using jQuery as a fallback library on IE in its documentation. That way the program can still run in IE, and other browsers can enjoy the file size advantage of Zepto. However, the APIs of the two are not fully compatible, so be careful and do sufficient research when using this method. test.2. The difference between Dom operations: jQuery will not take effect when adding id, but Zepto will take effect.
The id on the ul of the jQuery operation will not be added.(function($) { $(function() { var $list = $('<ul><li>jQuery 插入</li></ul>', { id: 'insert-by-jquery' }); $list.appendTo($('body')); });})(window.jQuery); Zepto 可以在 ul 上添加 id。 Zepto(function($) { var $list = $('<ul><li>Zepto 插入</li></ul>', { id: 'insert-by-zepto' }); $list.appendTo($('body')); });
3. Differences in event triggering:
The handler function of the load event will not be executed when using jquery;(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);The load event occurs when using zepto The processing function will execute
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'); });});
4, the difference between width() and height():
Zepto is determined by the box model (box-sizing), using .width () returns the assigned width, and uses .css('width') to return the result of adding border, etc.; jQuery will ignore the box model and always return the width/height of the content area (excluding padding and border).5. The difference between offset():
Zepto returns {top, left, width, height}; jQuery returns {width, height}.6. Zepto cannot obtain the width and height of hidden elements, but jQuery can.
7. Zepto does not define the extend method for the prototype but jQuery does.
8. Zepto's each method can only traverse arrays, not JSON objects.
Recommended related video tutorials:The above is the detailed content of Are jquery and zepto the same?. For more information, please follow other related articles on the PHP Chinese website!