在 JavaScript 选择器引擎中使用子代码匹配和数据信息
您好,我正在使用 dustin Diaz 的“Qwery”选择器引擎 如果您单击该链接,示例页面会显示选择器例如
div#baz.thunk a[-data-info*="hello world"] span + Strong {}
和
#foo a[lang|=en] {} 子代码
我无法理解的用法子代码和数据信息我什至阅读了CSS2选择器w3c页面,但无法理解它,有人可以用简单的例子解释我的概念。 -data-info 匹配innerHTML,如下所示的对象的Dom属性
<a href="http://www.google.com">Hello</a>
,当我执行下面的选择器时,它会给我上面的元素,
qwery("a[-data-innerHTML='Hello']");
请澄清我的概念并建议我查询以获取innerHTML/。使用 qwery 选择器引擎的其他属性
Hi i am using 'Qwery" selector engine by dustin diaz if you clicked that link, the sample page shows selectors like
div#baz.thunk a[-data-info*="hello world"] span + strong {}
and
#foo a[lang|=en] {} subcodes
i couldn't understand the use of subcodes and data-info i even read the CSS2 selector w3c page but could not comprehend from it. Could someone explain using simple example how these works. My notion of -data-info is match innerHTML, Dom properties of a object like below
<a href="http://www.google.com">Hello</a>
and when i executed the below selector it would give me the above element.
qwery("a[-data-innerHTML='Hello']");
please do clarify my notions and suggest me query to write to get the innerHTML/other properties using qwery selector engine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一篇好文章
http:// www.programmervn.com/2010/11/30-css-selectors-you-must-memorize-part.html
http://www.programmervn.com/2010 /11/30-css-selectors-you-must-memorize-part_17.html
摘录:
Here is a good Article
http://www.programmervn.com/2010/11/30-css-selectors-you-must-memorize-part.html
http://www.programmervn.com/2010/11/30-css-selectors-you-must-memorize-part_17.html
Extract: