好的,这是我想要完成的一个例子:
< div class =“testClass1 {place xsl:value-of HERE}”> < / DIV>有没有办法在XML / XSLT中删除这样的东西?
基本上我只需要创建一个选项来为XML中的包装div设置类…不确定这是否可行.
使用
Attribute-value-template:
原文链接:https://www.f2er.com/xml/292340.html<div class="testClass1 {xpath-expression}"> </div>
……或者是xsl:attribute.
<div> <xsl:attribute name="class">testClass1 <xsl:value-of select="{xpath-expression}"/></xsl:attribute> </div>