在页面中呈现 XML 属性值

发布于 2024-08-09 21:56:40 字数 385 浏览 8 评论 0原文

我正在尝试使用样式表将复杂的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停顿的约定 2024-08-16 21:56:40

您也许可以使用“content”和 attr css 函数。
要查看用于在打印媒体中的链接后打印链接的 href 的类似解决方案,请转至 http: //www.alistapart.com/articles/goingtoprint/ 并将页面向下滚动到标题“打印链接”,

最后可能看起来像这样:

 content: attr(roleType);

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:

 content: attr(roleType);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文