使用 XSLT 用 href 属性包装所有元素

发布于 2024-11-29 23:28:06 字数 242 浏览 0 评论 0原文

我想将任何包含 href 属性的标签包装到 中。标签。

例如。

<img src="someimage.jpg" href="someurl.xml"/>

会变成:

<a href="someurl.xml"><img src="someimage.jpg"/></a>

I want to wrap any tag that contains a href attribute into an <a> tag.

eg.

<img src="someimage.jpg" href="someurl.xml"/>

would become:

<a href="someurl.xml"><img src="someimage.jpg"/></a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

墨洒年华 2024-12-06 23:28:06
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <!--standard identity template that just copies content -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <!--For every element that has an href attribute-->
    <xsl:template match="*[@href]">
     <!--create an anchor element and an href attribute 
          with the value of the matched element's href attribute-->
        <a href="{@href}">
                   <!--then copy the matched element -->
            <xsl:copy>
                         <!--then apply templates (which will either match the 
                              identity template above or this template,
                              if any child elements have href attributes) -->
                <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
        </a>
    </xsl:template>

    <!--redact the href attribute-->
    <xsl:template match="*/@href"/>
</xsl:stylesheet>
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <!--standard identity template that just copies content -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <!--For every element that has an href attribute-->
    <xsl:template match="*[@href]">
     <!--create an anchor element and an href attribute 
          with the value of the matched element's href attribute-->
        <a href="{@href}">
                   <!--then copy the matched element -->
            <xsl:copy>
                         <!--then apply templates (which will either match the 
                              identity template above or this template,
                              if any child elements have href attributes) -->
                <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
        </a>
    </xsl:template>

    <!--redact the href attribute-->
    <xsl:template match="*/@href"/>
</xsl:stylesheet>
活雷疯 2024-12-06 23:28:06

此转换

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

 <xsl:template match="*[@href]">
  <a href="{@href}">
   <xsl:copy>
     <xsl:apply-templates select=
         "node()|@*[not(name()='href')]"/>
   </xsl:copy>
  </a>
 </xsl:template>
</xsl:stylesheet>

当应用于提供的 XML 文档时

<img src="someimage.jpg" href="someurl.xml"/>

产生完全想要的正确结果(与其他答案不同):

<a href="someurl.xml">
   <img src="someimage.jpg"/>
</a>

解释身份规则,覆盖任何具有href 属性。

This transformation:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

 <xsl:template match="*[@href]">
  <a href="{@href}">
   <xsl:copy>
     <xsl:apply-templates select=
         "node()|@*[not(name()='href')]"/>
   </xsl:copy>
  </a>
 </xsl:template>
</xsl:stylesheet>

when applied on the provided XML document:

<img src="someimage.jpg" href="someurl.xml"/>

produces exactly the wanted, correct result (unlike the other answer):

<a href="someurl.xml">
   <img src="someimage.jpg"/>
</a>

Explanation: Identity rule, overriden for any element that has an href attribute.

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