通过action传过来的值在option获取进行验证的方法
(编辑:jimmy 日期: 2025/5/12 浏览:3 次 )
通过action传过来的值在option获取进行验证的方法:
复制代码 代码如下:
for(var i=0;i<document.getElementById("ufacilityType").options.length;i++){
if(document.getElementById("ufacilityType").options[i].text==datas[0].facilityType){
document.getElementById("ufacilityType").options[i].selected=true;
break;
}
}
复制代码 代码如下:
for(var i=0;i<document.getElementById("ufacilityType").options.length;i++){
if(document.getElementById("ufacilityType").options[i].text==datas[0].facilityType){
document.getElementById("ufacilityType").options[i].selected=true;
break;
}
}
下一篇:javascript间隔刷新的简单实例