我在用一把umbraco菜單宏觀問題..一把umbraco菜單宏創建重複
我的宏返回與li元素,每個頁面的UL。
<xsl:output method="xml" omit-xml-declaration="yes" />
<xsl:param name="currentPage"/>
<xsl:variable name="level" select="1"/>
<xsl:template match="/">
<ul>
<xsl:for-each select="$currentPage/ancestor-or-self::* [@isDoc and @level=$level]/* [@isDoc and string(umbracoNaviHide) != '1']">
<li>
<a href="{umbraco.library:NiceUrl(@id)}">
<xsl:if test="$currentPage/ancestor-or-self::*/@id = current()/@id">
<xsl:attribute name="class">selected</xsl:attribute>
</xsl:if>
<xsl:value-of select="@nodeName"/>
</a>
</li>
</xsl:for-each>
</ul>
</xsl:template>
,我所遇到的問題是,兩頁是重複的,即使我只有每一個和他們的聯繫工作,並點加時賽同一頁面。
我也有一個問題,那就是最後一個li元素被missplaced,但只能在Firefox ... Chrome和Safari瀏覽器做工精細...
任何想法?
嗨貝克,任何機會,你可以發佈你的編輯作爲答案,所以很明顯,這個問題實際上已被回答,並在將來幫助人們。 :-) – 2011-06-05 16:11:44