一个xml表达式,请各位帮帮忙

发布于 2021-11-28 23:02:52 字数 4612 浏览 825 评论 2

想让朋友们帮我写个表达式

想要的结果是:

<ul>
<li></li>....8个
</ul>
<ul>
<li></li>....8个
</ul>
<ul>
<li></li>....8个
</ul>



目前的输出是
<li></li>
....无限



呈现上源码,各位牛牛们帮帮。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ms="urn:schemas-microsoft-com:xslt"
                xmlns:lewi="" xmlns:pe="labelproc" exclude-result-prefixes="pe ms lewi">
    <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:param name="titleLength"/>
    <xsl:param name="linkOpenType"/>
    <xsl:template match="/">
        <xsl:choose>
            <xsl:when test="count(/NewDataSet/Table) = 0">
                <li style="color:red">还没有任何项目!</li>
            </xsl:when>

            <xsl:otherwise>
                <xsl:for-each select="/NewDataSet/Table">
                    <li>
                        <div class="pic">
                            <a>
                                <xsl:attribute name="href">
                                    <xsl:value-of select="SiteUrl"/>
                                </xsl:attribute>
                                <xsl:attribute name="target">
                                    <xsl:choose>
                                        <xsl:when test="pe:GetNodeFieldName(NodeID, 'ItemOpenType') = 0">_self</xsl:when>
                                        <xsl:otherwise>_blank</xsl:otherwise>
                                    </xsl:choose>
                                </xsl:attribute>
                                <xsl:element name="img">
                                    <xsl:attribute name="src">
                                        <xsl:choose>
                                            <xsl:when test="LogoUrl !=''">
                                                <xsl:if test="pe:IsStartWithhttp(LogoUrl)='false'">
                                                    <xsl:value-of select="pe:UpLoadDir()"/>
                                                </xsl:if>
                                                <xsl:value-of select="LogoUrl"/>
                                            </xsl:when>
                                            <xsl:otherwise><xsl:value-of select="pe:UpLoadDir()"/>nopic.gif
                                            </xsl:otherwise>
                                        </xsl:choose>
                                    </xsl:attribute>
                                    <xsl:attribute name="border">0</xsl:attribute>
                                    <xsl:attribute name="alt">
                                        <xsl:value-of select="pe:CutText(Title,$titleLength,'…')"/>
                                    </xsl:attribute>
                                </xsl:element>
                            </a>
                        </div>
                        <div class="title">
                            <a>
                                <xsl:attribute name="href">
                                    <xsl:value-of select="SiteUrl"/>
                                </xsl:attribute>
                                <xsl:attribute name="target">
                                    <xsl:choose>
                                        <xsl:when test="pe:GetNodeFieldName(NodeID, 'ItemOpenType') = 0">_self</xsl:when>
                                        <xsl:otherwise>_blank</xsl:otherwise>
                                    </xsl:choose>
                                </xsl:attribute>
                                <xsl:value-of select="pe:CutText(Title,$titleLength,'…')"/>
                            </a>
                        </div>
                    </li>
                </xsl:for-each>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>



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

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

发布评论

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

评论(2

葬花如无物 2021-11-29 20:54:21

不会呀

浅沫记忆 2021-11-29 07:56:02

(position() 是思路 不知道如何使用

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