var sell=document.getElementById("select1");
var at=sell.options[i].value;
var i;
for(i=0;i<=sell.length;i++){
console.info(at);
if(at.indexOf("DCIP")>0){
document.getElementById("11s").style.display="none";
document.getElementById("dcips").value="";
}
}
错误信息:Uncaught TypeError: Cannot read property 'value' of undefined
为什么网页会出现这个错误?!能帮我看看吗?
var at=sell.value;//怕是这么写吧
不是。select 的option是相当一个数组。得到某个元素需要options[]