js获取select中选中内容
(1)普通js:
普通的js方式有两种,第一种是通过form来获取:var obj=form1.selectname.option,第二种是通过id:var obj=selectid.option,然后
for(var i=0;i<obj.length;i++){
if(obj[i].selected==true){
result[j] = new Array();
result[j][0] = obj[i].text;
result[j][1] = obj[i].value;
j++;
}
}
(2)mootools
var obj = $(“group”).options;
result = obj.getSelected();
呵呵,菜鸟心得,高手勿笑!