获取select 中的option属性的值和循环出来的Id

    var chengshi=document.getElementById("chengshixuanze");//select标签的id
        chengshi.onchange=function(){                                       //当选项改变时触发
            var valOption=this.options[this.selectedIndex].value;//获取option的value
                alert(valOption);
            var id=this.options[this.selectedIndex].id;//获取option的id(可以获得循环出来的Id)
                alert(id);
            var txtOption=this.options[this.selectedIndex].innerHTML;//获取option中间的文本
                alert(txtOption);

       }


//分配html页面的城市

 aj.post('provinceid='+id,"<{$url}>/area",function(msg){
var arr=eval('('+msg+')');
var len=arr.length;
var ci=document.getElementById('ci');
for(var i=0;i<len;i++){
//document.write('<option>'+arr[i]+'</option>');
//alert(arr[i]);
var opt=document.createElement("option");
opt.value=arr[i];
opt.innerHTML=arr[i];
opt.id=i;
ci.appendChild(opt);
}
})

你可能感兴趣的:(option,select,值)