欢迎来到天天文库
浏览记录
ID:24222722
大小:51.00 KB
页数:3页
时间:2018-11-13
《javascript调用xml制作连动下拉框--.》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Javascript调用XML制作连动下拉框>>.传统的HTML页面中连动下拉框采用了两种方法:1)直接将下拉框中的内容hardcode于html的javascript中,调用javascript函数循环写入下拉框中。这种方法不适用于下拉框内容经常改变的情况。因为数据源和javascript程序写死在同一页面。以下是引用片段:<html><head><title>List</title><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><scriptLANG
2、UAGE="javascript"><!--varonecount;onecount=0;subcat=neent.myform.smalllocation.length=0;varlocationid=locationid;vari;ument.myform.smalllocation.options[0]=neent.myform.smalllocation.options[ument.myform.smalllocation.length]=nemethod="post"><selectonChange="changelocation(ument.myf
3、orm.biglocation.options[ument.myform.biglocation.selectedIndex].value)"><optionvalue="01"selected>上海</option><optionvalue="02">江西</option></select><select><optionselectedvalue="">==所有地区==</option></select></form><scriptLANGUAGE="javascript"><!--changelo
4、cation(ument.myform.biglocation.options[ument.myform.biglocation.selectedIndex].value);//--></script></body></html>2)javascript直接读取数据库,取数据库中的记录写入javascript中,然后和第一种方法一样,调用javascript函数循环写入下拉框中。此方法将数据源与javascript分开,但,公开数据库的连接,从安全角度说,没有多少实用价值。我的方法是将下拉框中的数据放在XML文件中,用javascript读XML文件,取
5、得下拉框中的内容。97312348:[这篇文章来自..,]
此文档下载收益归作者所有