使用 XDV 仅在首页中放置内容 div
我试图通过这一行(在rules.xml中)仅删除主页的内容div,但
<drop css:theme="#content"
if-content="/html/body[@class='section-front-page']" />
它不起作用......为什么?对我来说似乎没问题:)
I'm trying to remove the content div only for the homepage by this line (in the rules.xml)
<drop css:theme="#content"
if-content="/html/body[@class='section-front-page']" />
It doesn't work ... why? It seems ok for me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也可以使用 CSS 选择器:
这会解析为相同的 XPath 表达式,但看起来更容易
You can use CSS selectors, too:
This resolves to the same XPath expression, but it's a lot easier on the eye
请参阅:http://pivotallabs.com/users/alex /blog/articles/427-xpath-css-class-matching
要使用该语法,您必须匹配 body 标记的所有 类
使用:(
在 FireBug 中对我有用)
See: http://pivotallabs.com/users/alex/blog/articles/427-xpath-css-class-matching
To use that syntax you would have to match on all the classes for the body tag
Use:
(works for me in FireBug)