資源描述:
《xml在web中的簡(jiǎn)單應(yīng)用》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在應(yīng)用文檔-天天文庫(kù)。
1、XML在Web中的簡(jiǎn)單應(yīng)用>>教育資源庫(kù)首先建立一個(gè)Area.html,很簡(jiǎn)單包含一個(gè)省份的select元素和一個(gè)城市的界面元素:<html><head><title>AreaDemo</title></head><body><selectid="province"size=1onchange="loadCity()"><optionvalue="city01.xml">江蘇</option><optionvalue="city02.xml">&
2、ordm;湖南</option><optionvalue="city03.xml">湖北</option></select><selectid="city"size=1></select><xmlid="xmlobj"></xml><scriptlanguage="javascript"type="text/javascript">varprovobj=ument.all("province");varcityobj=ument.all("city");va
3、rxmlhttp=ument.all("xmlobj");loadCity();/***裝載城市數(shù)據(jù)*/functionloadCity(){cityobj.options.length=0;varfile=provobj.options[provobj.selectedIndex].value;xmlhttp.async=false;xmlhttp.load(file);varcities=xmlhttp.selectNodes("Cities/City");varidx,name;for(idx=0;idx<cities.length;idx++){na
4、me=cities[idx].getAttribute("name");cityobj.options.length++;cityobj.options[cityobj.options.length-1].value=name;cityobj.options[cityobj.options.length-1].text=name;}}</script></body></html>然后建立三個(gè)省份的城市數(shù)據(jù)文件,分別命名為city01.xml,city02.xml,city03.xml<?xmlversion="1.0"en
5、coding="GB2312"?><CitiesProvince="江蘇"><Cityname="南京"/></Cities><?xmlversion="1.0"encoding="GB2312"?><CitiesProvince="湖南"><Cityname="長(zhǎng)沙"/></Cities><?xmlversion="1.0"encoding="GB2312"?><CitiesProvince="湖北"><Cityname="武漢"/>&l
6、t;/Cities>保存,在ie6瀏覽通過(guò),理論上可以在ie5一上瀏覽器跑。>>>>這篇文章來(lái)自..,。