0
我無法使圖像顯示在樣式表中設置的xml文件中。無法通過XSLT樣式表中的模板顯示RSS/XML圖像
這裏是XML的文件中的內容
<image>
<title>SciTimes.com</title>
<link>home.htm</link>
<url>scitimes.jpg</url>
<width>620</width>
<height>96</height>
<description>SciTimes delivers up-to-the-minute news and information on the latest stories from the world of science and technology.
</description>
</image>
然後,在我遇到的問題是在XSL文件。我在上面的XML文件中顯示來自圖像元素的圖像時出現問題。
這是我正在努力的部分。我試圖顯示在XML文件中引用
在這裏,我創建的模板圖像
<xsl:template match="image" >
<a href="{link}">
<img src="{url}" alt="{title}" width="{width}" height="{height}" longdesc="{descriptions}"/>
</a>
</xsl:template>
和scitimes.jpg圖像,然後在根模板中我運用它
<div id="logo">
<xsl:apply-templates select="channel/image"/>
</div>
但它不顯示
現在還不清楚你在問什麼。 「斷開」是什麼意思,以及你期望輸出是什麼? –
根據您的意見,請告訴我們您的預期產出。 –
我有一切,但我無法得到圖像顯示,我已經創建了一個模板,然後在根模板中引用。我已經更新了上面的代碼 – programmerNOOB