我是網絡開發新手,並且發現自己一直在堅持如何使網站訪問者過濾和排序由XML/XSL生成的出版物的HTML表格。由於服務器的限制,我不能使用.php或ASP.NET - 數據必須保持爲平面文件。用戶定義過濾使用XML/XSL構建的HTML表格
下面是XML文件的基本結構:
<xml>
<records>
<record>
<contributors>
<author>Author 1</author>
<author>Author 2</author>
<author>Author 3</author>
</contributors>
<title>Publication Title</title>
<type>Publication Type</type>
<keywords>Multiple Keywords</keywords>
<year>1995</year>
<abstract>Abstract Text Here</abstract>
</record>
</records>
</xml>
而且,我的XSL:
<table id="cvPubs">
<thead>
<tr>
<th>Authors</th>
<th>Title</th>
<th>Type of Publication</th>
<th>keywords</th>
<th>Year</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<xsl:for-each select="descendant::record">
<tr>
<td><xsl:value-of select="keywords" /></td>
<td><xsl:value-of select="contributors/*[position()]" /></td>
<td><xsl:value-of select="titles/title" /></td>
<td><xsl:value-of select="abstract" /></td>
<td><xsl:value-of select="titles/tertiary-title" /></td>
<td><xsl:value-of select="year" /></td>
</tr>
</xsl:for-each>
</tbody>
</table>
我想下拉列表添加到keyword
場,和一個用戶自定義文本字段爲contributors
和abstract
字段。
XSL文件輸出表格完美,我只是不知道什麼是最好的方法是建立過濾器和排序功能。我已經嘗試了一些用於表格排序/過濾的JavaScript和jQuery腳本,但是我無法讓它們正常工作。我沒有得到任何錯誤,但我沒有得到添加的功能。
任何指導將不勝感激。謝謝閱讀!
Steven - 非常感謝您的建議,並確認我沒有太過偏離JavaScript的道路!我也會閱讀你的建議。非常感謝。節日快樂! – 2010-12-21 16:44:44
不客氣。祝你聖誕節快樂。順便說一句,當你看到一些複雜的代碼時,不要被JS嚇倒,只要一步一步學習其他人在網絡上的例子。 Javascript寫起來很簡單,但很難掌握。 – 2010-12-24 23:02:00