当前位置:主页 > 网页前端 > JavaScript代码 >

通过action传过来的值在option获取进行验证的方法

时间:2020-10-08 13:27:53 | 栏目:JavaScript代码 | 点击:

通过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;
}
}

您可能感兴趣的文章:

相关文章