我可以从包含的Sizzle.js中获得怎样和有什么好处?
Sizzle.js是一个独立的库吗?
为什么它包含在jquery库中,出于什么目的?
/*!
* jQuery JavaScript Library v1.4.2
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Sat Feb 13 22:33:48 2010 -0500
*/
虽然在sizzle.js网站上提及
完全独立(没有图书馆 依赖关系)
答案 0 :(得分:28)
Sizzle.js是一个JavaScript库,它实现了一个“CSS选择器引擎,可以轻松地放入主机库中。” jQuery在内部使用它来满足CSS的选择需求。如果你想要一个CSS引擎并且不需要jQuery的所有其他JavaScript好处,你可以单独使用Sizzle.js。
答案 1 :(得分:13)
好的,实际上还不清楚sizzle.js对我来说是什么。基本上,它的功能是允许你在'选择器'上使用javascript,即类,ID,DOM元素等... 所以当你在jQuery中使用它时:
$('div')
这是sizzle.js在工作,使该元素可用于javascript。
我希望我能做到这一点:)
答案 2 :(得分:4)
以下是资源:
http://wiki.github.com/jeresig/sizzle/
选择器功能
* CSS 3 Selector support
* Full Unicode support
* Escaped selector support #id\:value
* Contains text :contains(text)
* Complex :not :not(a#id)
* Multiple :not :not(div,p)
* Not attribute value [name!=value]
* Has selector :has(div)
* Position selectors :first, :last, :even, :odd, :gt, :lt, :eq
* Easy Form selectors :input, :text, :checkbox, :file, :password, :submit, etc
* Header selector :header
代码功能
* Provides meaningful error messages for syntax problems
* Uses a single code path (no XPath)
* Uses no browser-sniffing
* Caja-compatible code
答案 3 :(得分:4)
jQuery需要sizzle才能运行。你可以利用一个有效的JavaScript库。