xml與html顯示和調(diào)用
當前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
[html]article.xml <?xml version="1.0" encoding="gb2312"?> <article> <title>XML基礎(chǔ)</title> <author>胡千好</author> <email>ctguhqh@sina.com</email> <blogname>咖啡迷</blogname> <url>http://hi.baidu.com/javajavajava</url> <date>2007年8月</date> </article> article.html <HTML> <HEAD> <TITLE>在html中調(diào)用xml數(shù)據(jù)</TITLE> <script language="javaScript" for="window" event="onload"> var xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.load("article.xml"); nodes=xmlDoc.documentElement.childNodes; title.innerText = nodes.item(0).text; author.innerText = nodes.item(1).text; email.innerText = nodes.item(2).text; blogname.innerText = nodes.item(3).text; url.innerText = nodes.item(4).text; date.innerText = nodes.item(5).text; </script> </HEAD> <BODY> <b>標題:</b><span id="title"></span><br> <b>作者:</b><span id="author"></span><br> <b>信箱:</b><span id="email"></span><br> <b>我的Blog名:</b><span id="blogname"></span><br> <b>我的Blog地址:</b><span id="url"></span><br> <b>日期:</b><span id="date"></span><br> </BODY> </HTML> 在瀏覽器中打開article.xml ,就可以看到效果![/html] 在網(wǎng)上有看到這樣的代碼例子,也將這兩個命名了名字,不過在瀏覽器中卻什么也顯示不出來呀,都沒有用到里面的數(shù)據(jù)。 還有像這樣的html來調(diào)用xml是不是不能在文件里加 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> 該文章在 2011/4/12 12:28:22 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |