码迷,mamicode.com
首页 > Web开发 > 详细

js中获取checkbox里选中的多个值

时间:2019-10-16 10:00:54      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:button   name   存储   htm   class   选中   hid   doc   获取   

链接:https://zhidao.baidu.com/question/203897221.html 

(侵删)

相同name的input加上checkbox 需要获取被选中的存储起来

例如:

checkbox:

<input type="checkbox" name="test" value="1"/><span>1</span>
<input type="checkbox" name="test" value="2"/><span>2</span>
<input type="checkbox" name="test" value="3"/><span>3</span>
<input type="checkbox" name="test" value="4"/><span>4</span>
<input type="checkbox" name="test" value="5"/><span>5</span>
<input type=‘button‘ value=‘提交‘ onclick="fun()"/>

 

获取值:

function fun(){
    obj = document.getElementsByName("test");
    check_val = [];
    for(k in obj){
        if(obj[k].checked)
            check_val.push(obj[k].value);
    }
    alert(check_val);
}

获取name为test的值

遍历是否被选中

 

js中获取checkbox里选中的多个值

标签:button   name   存储   htm   class   选中   hid   doc   获取   

原文地址:https://www.cnblogs.com/cmz-32000/p/11683358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!