我需要用style="width:<>; height:<>;
替換獨立屬性width="<>"
和height="<>"
。在HTML文件中將XML屬性移動到style =「」
典型輸入以下
<img width="32pt" alt="PIC" class="graphics" height="32pt" src="images/about.png"/>
這樣的結果應該是
<img style="width:32pt; height:32pt;" alt="PIC" class="graphics" src="images/about.png"/>
的問題是,我從來沒有與XSL工作過。
我知道的,因爲到目前爲止,是
這可以趕上img元素
<xsl:template match="xh:img">
這可以趕上width
屬性
<xsl:template match="@width">
,我知道如何添加屬性或元素。 但我不知道如何存儲width
和height
的值,並將它們寫入一行。 任何幫助,將不勝感激。
非常感謝!我不得不修復'not()'的「)」,把它放在最後,但它可以工作。 – marco
好抓 - 現在修好了。 –