js获取select中选中内容

作者: 淡蓝海域 分类: 程序记实 发布时间: 2012-03-12 02:49

(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();

呵呵,菜鸟心得,高手勿笑!

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!

发表评论