标签:
// DCVP
for(var i=0;i<count;i++)
{
var at=$("#select1").get(0).options[i].value;
if(at.indexOf("DCVP")>0)
{
document.getElementById("12s").style.display="none"; //隐藏12s
document.getElementById("DCVP").value="";
break;
}
}
循环获select 的某个option,判断是否包含dcvp
标签:
原文地址:http://www.cnblogs.com/OP-RONG/p/4237914.html