在页面中呈现 XML 属性值
我正在尝试使用样式表将复杂的 XML 文档呈现为网页(仅限 FF)。在其中一个标签中,内容本身是 a 属性值的一部分,
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR III"/>
</projectMember>
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR I"/>
</projectMember>
我需要使用 css 选择器在 Firefox 中显示 roleType 的值。我不想使用 XLST 或 Javascript,因为修改 XML 源是最后的选择。
I am trying to render a complex XML document as webpage(FF only) using a stylesheet. In one of the tag the content itself is part of the a attribute value
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR III"/>
</projectMember>
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR I"/>
</projectMember>
I need to display the value of roleType in Firefox using css selectors. I dont want to use XLST or Javascript as modifying XML source is last option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用“content”和 attr css 函数。
要查看用于在打印媒体中的链接后打印链接的 href 的类似解决方案,请转至 http: //www.alistapart.com/articles/goingtoprint/ 并将页面向下滚动到标题“打印链接”,
最后可能看起来像这样:
You might be able to use "content" and the attr css function.
To see a similar solution used to print the href of a link after the link in print media, goto http://www.alistapart.com/articles/goingtoprint/ and scroll down the page to the heading "Printed links"
it might look something like this in the end: