一:讀本地xml
二:子節點呼叫方法
xml資料格式如下:
<?xml version="1.0" encoding="gb2312"?>
劉亦菲mingxing/liuyifei.htm
7a9d4b
蔡依林mingxing/caiyilin.htm
fd0000
張娜拉mingxing/zhangnala.htm
7a9d4b
張韶涵mingxiang/zhangshaohan.htm
0000ff
張靚穎mingxing/zhangliangyin.htm
7a9d4b
李宇春mingxing/liyuchun.htm
7a9d4b
徐若瑄mingxing/xuluxuan.htm
fd0000
var cdsales=new activexobject("microsoft.xmldom"); //建立xmldom物件
cdsales.async=true; //使用非同步載入
loadsalesdoc()
cdsales.onreadystatechange=loadedsales;
function loadedsales()
var txt="";
if(cdsales.readystate==4)
if(cdsales.parseerror.errorcode != 0)
txt="";
}elseelseelse{
txt="";
sales.innerhtml=txt;
function loadsalesdoc()
var url="/xml/hot.xml";
cdsales.load(url);
三:節點屬性讀取方法
其它:1.輸出內容:document.write(txt)
2.輸出內容到div
例項解析Js XML的操作方法
我的xml檔案login.xml如下.現在我需要對這個xml檔案的內容進行操作.首先,我們需要載入這個xml檔案,js中載入xml檔案,是通過xmldom來進行的.載入xml文件 loadxml function xmlfile else if document.implementation doc...
js xml生成級聯下拉框
需要預設選中時,定義乙個變數 var cityid 城市id 下面是js function readxml else if document.implementation document.implementation.createdocument else var root xmldoc.docu...
C 讀取檔案方法
解決亂碼問題 方法一 需要從streamreader中指定引數即可 streamreader objreader new streamreader filepath,unicodeencoding.getencoding gb2312 string sline while sline null ob...