0
我打電話申請模板如下:如何獲取XSLT模板參數中的屬性值?
<xsl:apply-templates>
<xsl:with-param name="pWeight" select="@layoutWeight * $pContentWidth" />
</xsl:apply-templates>
我試圖訪問子元素的layoutWeight
屬性值適用模板的作用。但是,即使子項的數值爲layoutWeight
,pContentWidth
也是一個數值,計算總是評估爲空。
如何訪問子元素的layoutWeight
屬性apply-templates正在執行的操作?