selector
jQuery 1.3新增。返回传给jQuery()的原始选择器。
换句话说,就是返回你用什么选择器来找到这个元素的。可以与context一起使用,用于精确检测选择器查询情况。这两个属性对插件开发人员很有用。
New in jQuery 1.3 A selector representing selector originally passed to jQuery().
Should be used in conjunction with context to determine the exact query used. These two properties are mostly useful to plugin developers.
返回值Striing
示例确定查询的选择器
jQuery 代码:
$("ul")
.append("<li>" + $("ul").selector + "</li>")
.append("<li>" + $("ul li").selector + "</li>")
.append("<li>" + $("div#foo ul:not([class])").selector + "</li>");
结果:
ul
ul li
div#foo ul:not([class])
本手册由ajax之家 ajaxa.cn整理编辑。