1.example.xml--主要資料檔
<?xml version="1.0" encoding="UTF-8"?> <?xml:stylesheet type="text/xsl" href="example.xsl"?> <projects id="1"> <project title="一级标题1" index="1"> <items isTrunk="false" title="二级标题1.1" id="items_1"> <result type="2">1</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> <remark></remark> </items> <items isTrunk="false" title="二级标题1.2" id="items_2"> <result type="2">3</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </items> </project> <project title="一级标题2" index="2"> <items isTrunk="false" title="二级标题2.1" id="items_3"> <result type="3">3</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </items> <items isTrunk="true" title="二级标题2.2"> <item title="三级标题2.2.1" id="item_1"> <result type="1">2</result> <officer><![CDATA[居然是乱码]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> <item title="三级标题2.2.2" id="item_2"> <result type="1">3</result> <officer><![CDATA[<><>]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> </items> <items isTrunk="true" title="二级标题2.3"> <item title="三级标题2.3.1" id="item_3"> <result type="2">1</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> <item title="三级标题2.3.2" id="item_4"> <result type="2">1</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> </items> </project> <project title="一级标题3" index="3"> <items isTrunk="false" title="二级标题3.1" id="items_4"> <result type="4" units="元">25345</result> <officer><![CDATA[sinoly]]></officer> <classified>1</classified> <eligibility>0</eligibility> </items> <items isTrunk="false" title="二级标题3.2" id="items_5"> <result type="4" units="元">9865764</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </items> <items isTrunk="false" title="二级标题3.3" id="items_6"> <result type="2">0</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </items> <items isTrunk="true" title="二级标题3.4"> <item title="三级标题3.4.1" id="item_5"> <result type="1">0</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> <item title="三级标题3.4.2" id="item_6"> <result type="1">0</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> <item title="三级标题3.4.3" id="item_7"> <result type="1">0</result> <officer><![CDATA[]]></officer> <classified>1</classified> <eligibility>0</eligibility> </item> </items> </project> </projects>
2.example.xsl--樣式檔,很方便的取到xml資料
<?xml version="1.0" encoding="gb2312"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!--根模板--> <xsl:output method="xml"/> <xsl:template match="/"> <xsl:apply-templates select="projects/project"/> <h6> <button type="submit" class="btn1_mouseout" onmouseover="this.className='btn1_mouseover'" onmouseout="this.className='btn1_mouseout'" title="提交"> 下一步</button> </h6> </xsl:template> <!--主题模板--> <xsl:template match="project"> <TABLE border="0" cellspacing="0" cellpadding="0" class="table"> <tr> <td colspan="5" align="center" class="tright"> <h2> <xsl:number value="position()" format="一、"/><xsl:value-of select="@title"/> </h2> </td> </tr> <xsl:apply-templates select="items"/> </TABLE> <BR/> </xsl:template> <!--一级题干模板--> <xsl:template match="items"> <tr> <td colspan="2" class="tright"> <xsl:number value="position()" format="1."/><xsl:value-of select="@title"/> </td> <xsl:choose> <xsl:when test="@isTrunk[.='false']"> <xsl:apply-templates select="result"/> <xsl:apply-templates select="officer"/> </xsl:when> <xsl:otherwise> <td colspan="3" class="tright" style="color:blue;font-weight:bolder"> 注意以下几点 </td> <xsl:apply-templates select="item"/> </xsl:otherwise> </xsl:choose> </tr> </xsl:template> <!--二级题干模板--> <xsl:template match="item"> <tr> <td class="tright" style="padding-left:20px" colspan="2"> <h4><xsl:number value="position()" format="(a)."/><xsl:value-of select="@title"/></h4> </td> <xsl:apply-templates select="result"/> <xsl:apply-templates select="officer"/> </tr> </xsl:template> <!--选择框模板--> <xsl:template match="result"> <xsl:choose> <xsl:when test="@type = '1'"> <td width="15%"> <xsl:element name="select"> <xsl:attribute name="name">re_<xsl:value-of select="../@id"/></xsl:attribute> <!--<select name="select">--> <xsl:choose> <xsl:when test=".='0'"> <option value="0" selected="selected">请选择 </option> <option value="1">符合</option> <option value="2">基本符合</option> <option value="3">不符合</option> </xsl:when> <xsl:when test=".='1'"> <option value="0">请选择 </option> <option value="1" selected="selected">符合</option> <option value="2">基本符合</option> <option value="3">不符合</option> </xsl:when> <xsl:when test=".='2'"> <option value="0">请选择 </option> <option value="1">符合</option> <option value="2" selected="selected">基本符合</option> <option value="3">不符合</option> </xsl:when> <xsl:when test=".='3'"> <option value="0">请选择 </option> <option value="1">符合</option> <option value="2">基本符合</option> <option value="3" selected="selected">不符合</option> </xsl:when> </xsl:choose> <!--</select>--> </xsl:element> </td> </xsl:when> <xsl:when test="@type = '2'"> <td width="15%"> <xsl:element name="select"> <xsl:attribute name="name">re_<xsl:value-of select="../@id"/></xsl:attribute> <xsl:choose> <xsl:when test=".='0'"> <option value="0" selected="selected">请选择 </option> <option value="1">是</option> <option value="2">否</option> </xsl:when> <xsl:when test=".='1'"> <option value="0">请选择 </option> <option value="1" selected="selected">是</option> <option value="2">否</option> </xsl:when> <xsl:when test=".='3'"> <option value="0">请选择 </option> <option value="1">是</option> <option value="2" selected="selected">否</option> </xsl:when> </xsl:choose> </xsl:element> </td> </xsl:when> <xsl:when test="@type = '3'"> <td width="15%"> <xsl:element name="select"> <xsl:attribute name="name">re_<xsl:value-of select="../@id"/></xsl:attribute> <xsl:choose> <xsl:when test=".='0'"> <option value="0" selected="selected">请选择 </option> <option value="1">有</option> <option value="2">无</option> </xsl:when> <xsl:when test=".='1'"> <option value="0">请选择 </option> <option value="1" selected="selected">有</option> <option value="2">无</option> </xsl:when> <xsl:when test=".='3'"> <option value="0">请选择 </option> <option value="1">有</option> <option value="2" selected="selected">无</option> </xsl:when> </xsl:choose> </xsl:element> </td> </xsl:when> <xsl:otherwise> <td width="15%"> <xsl:element name="textarea"> <xsl:attribute name="name">re_<xsl:value-of select="../@id"/></xsl:attribute><xsl:value-of select="."/> </xsl:element> <xsl:value-of select="@units"/> </td> </xsl:otherwise> </xsl:choose> </xsl:template> <!--责任人模板--> <xsl:template match="officer"> <td width="9%" class="tright">责任人</td> <td width="11%"> <xsl:element name="textarea"> <xsl:attribute name="name">of_<xsl:value-of select="../@id"/></xsl:attribute> <xsl:value-of select="."/> </xsl:element> </td> </xsl:template> </xsl:stylesheet>
目前1/2頁 12下一頁閱讀全文
以上是透過javascript xml xsl取值及資料修改第1/2頁的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

RSS是一種基於XML的格式,用於發布經常更新的內容。 1.RSSfeed通過XML結構化組織信息,包括標題、鏈接、描述等。 2.創建RSSfeed需按照XML結構編寫,添加元數據如語言和發布日期。 3.高級用法可包含多媒體文件和分類信息。 4.調試時使用XML驗證工具,確保必需元素存在且編碼正確。 5.優化RSSfeed可通過分頁、緩存和保持結構簡潔來實現。通過理解和應用這些知識,可以有效管理和分發內容。

RSS是一種基於XML的格式,用於發布和訂閱內容。 RSS文件的XML結構包括根元素、元素和多個元素,每個代表一個內容條目。通過XML解析器讀取和解析RSS文件,用戶可以訂閱並獲取最新內容。

XML在RSS中具有結構化數據、可擴展性、跨平台兼容性和解析驗證的優勢。 1)結構化數據確保內容的一致性和可靠性;2)可擴展性允許添加自定義標籤以適應內容需求;3)跨平台兼容性使其在不同設備上無縫工作;4)解析和驗證工具確保Feed的質量和完整性。

RSS在XML中的實現方式是通過結構化的XML格式來組織內容。 1)RSS使用XML作為數據交換格式,包含頻道信息和項目列表等元素。 2)生成RSS文件需按規範組織內容,發佈到服務器供訂閱。 3)RSS文件可通過閱讀器或插件訂閱,實現內容自動更新。

RSS的高級功能包括內容命名空間、擴展模塊和條件訂閱。 1)內容命名空間擴展RSS功能,2)擴展模塊如DublinCore或iTunes添加元數據,3)條件訂閱根據特定條件篩選條目。這些功能通過添加XML元素和屬性實現,提升信息獲取效率。

RSSFEEDSUSEXMLTOSSTRUCTURECONTUPDATE.1)XMLPROVIDEDIDESAHIERARCHICALSTRUCTUREFFORDATA.2)THEELEMENTDEFINESTHEEFEED'SIDENTITYANDCONTAINS ELEMENT.3)ELEMENTEMERPREPRESERPRESENTERPRESENTIVIDIVIVELPIECTUALPIECES.4)RSSSSSSSSSSSISEXTEXTENSIBLERECTICERSINCREECTINCERINCTICENT.5)

RSS和XML是用於網絡內容管理的工具。 RSS用於發布和訂閱內容,XML用於存儲和傳輸數據。它們的工作原理包括內容髮布、訂閱和更新推送。使用示例包括RSS發布博客文章和XML存儲書籍信息。

RSS文檔是基於XML的結構化文件,用於發布和訂閱頻繁更新的內容。它的主要作用包括:1)自動化內容更新,2)內容聚合,3)提高瀏覽效率。通過RSSfeed,用戶可以訂閱並及時獲取來自不同來源的最新信息。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SecLists
SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

SublimeText3 Linux新版
SublimeText3 Linux最新版

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。