© 1999-2048 dssz.net 粤ICP备11031372号
Hello
one
two
three
结果: [two
] [示例]: 把页面的背景颜色设置为黑色。 $(document.body).background( "black" ); [示例]: 隐藏表单中的所有input元素。 $( myForm.elements ).hide() jQuery$( FunctionJavascript 函数 fn当DOM载入完成后要执行的函数 )$(document)的简写方式。英文详解 $(document).ready()的简写方式,允许你绑定一个在DOM文档载入完成后执行的函数。这个函数的作用如同$(document).ready()一样,只不过用这个函数时,需要把页面中所有其他的$()操作符都包装到其中来。从技术上来说,这个函数是可链接的--但真正以这种方式链接的情况并不多。你可以在一个页面中使用任意多个$(document).ready事件。 要详细了解ready事件,见ready(Function)。 A shorthand for $(document).ready(), allowing you to bind a function to be executed when the DOM document has finished loading. This function behaves just like $(document).ready(), in that it should be used to wrap all of the other $() operations on your page. While this function is, technically, chainable - there really isn't much use for chaining against it. You can have as many $(document).ready events on your page as you like. See ready(Function) for details about the ready event. [示例]: 当DOM就绪可用时,执行其中的函数。 $(function(){ // DOM文档已经载入就绪 }); jQuery$( String expr, Element|jQuery表示DOM元素的Javascript对象或jQuery对象 context(可选)作为上下文的DOM元素、文档或jQuery对象。 )这个函数接收一个包含CSS或基本的XPath选择符的字符串,然后用这个字符串去匹配一组元素。英文详解 这个函数接收一个包含CSS或基本的XPath选择符的字符串,然后用这个字符串去匹配一组元素。 jQuery的核心功能都是通过这个函数实现的。 jQuery中的一切都构建于这个函数之上,或者说都是在以某种方式使用这个函数。这个函数最基本的用法就是向它传递一个表达式(通常由CSS或XPath选择符组成),然后根据这个表达式来查询所有匹配的元素。 在默认情况下,$()查询的是当前HTML文档中的DOM元素。 This function accepts a string containing a CSS or basic XPath selector which is then used to match a set of elements. The core functionality of jQuery centers around this function. Everything in jQuery is based upon this, or uses this in some way. The most basic use of this function is to pass in an expression (usually consisting of CSS or XPath), which then finds all matching elements. By default, $() looks for DOM elements within the context of the current HTML document. [示例]: 找到所有是div元素子元素的p元素。 $("div > p") HTML标记:one
two
three
结果: [two
] [示例]: 在文档的第一个表单中,搜索所有单选按钮(或:type值为radio的input元素)。 $("input:radio", document.forms[0]) [示例]: 查询指定XML文档中的所有div元素。 $("div", xml.responseXML) ...展开收缩