HTML與XML資料

來源:互聯網
上載者:User

建立一個data.xml

  <?xml version="1.0" encoding="gb2312"?>
  <myclassmates>
    <classmate>
      <name>11</name>
      <age>11</name>
    </classmate>
  </myclassmates>

*************************
* 在HTML中顯示xml中的資料
*************************
NO.1--用很簡單的資料繫結了

NO.2--表格綁定資料(很好的)
      <xml id=xmldata src=data.xml></xml>
      <table id=xmltable datasrc="#xmldata" datapagesize="3">
      <theme>
      <th>Name</th><th>Age</th>
      <tr>
      <td><span datafld="name"></span></td>
      <td><span datafld="age"></span></td>
      </table>
NO.3--用css來顯示(沒有html的事情)
       建立css
       name{display:block;font-size:22pt;color:#ccccff;background-color:red}
       age{display:block;font-size:12pt}
       在data.xml串連css
       <?xml-stylesheet href="css.css" type="text/css"?>
NO.4--用xsl來顯示(不說了)
NO.5--用ASP的xmlDOM對象也可以,不過不是今天討論的範圍

***********************
*  操作xml資料
***********************
用vbs或者js來搞定

例如上面的NO.1
     <button onclick="xmldata.recoreset.movefirst()">First</button>
     <button onclick="if(xmldata.recordset.absoluteposition<>1) xmldata.recordset.moveprevious()">Prev</button>
     <button onclick="if(xmldata.recordset.absoluteposition<>xmldata.recordset.recodcount)xmldata.recordset.movenext()">Next</button>
     <button onclick="xmldata.recordset.movelast()">Last</button>
上面的NO.2可以分頁顯示了:
     <button onclick="xmltable.firstPage()">First</button>
     <button onclick="xmltable.previousPage()">Prev</button>
     <button onclick="xmltable.nextPage()">Next</button>
     <button onclick="xmltable.lastPage()">Last</button>
 
sr:http://www.cnblogs.com/caca/archive/2004/07/16/25018.aspx

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.