首页 > 代码库 > Jquery获取复选框的方法

Jquery获取复选框的方法

转自:http://blog.csdn.net/longyangyangyang/article/details/6128141

html代码:
<input type="checkbox" name="test" value="http://www.mamicode.com/0" />0&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/1" />1&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/2" />2&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/3" />3&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/4" />4&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/5" />5&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/6" />6&nbsp;&nbsp;
<input type="checkbox" name="test" value="http://www.mamicode.com/7" />7&nbsp;&nbsp;
<input type="button" onclick="chk()" value="http://www.mamicode.com/提 交" />

js代码

//通过javascrip方法获取值

function chk(){
var obj=document.getElementsByName(‘test‘); //选择所有name="‘test‘"的对象,返回数组
//取到对象数组后,我们来循环检测它是不是被选中
var s=‘‘;
for(var i=0; i<obj.length; i++){
if(obj[i].checked) s+=obj[i].value+‘,‘; //如果选中,将value添加到变量s中
}
//那么现在来检测s的值就知道选中的复选框的值了
alert(s==‘‘?‘你还没有选择任何内容!‘:s);
}

 


//jquery获取复选框值 

//其中push是向数组中添加值
function jqchk(){ 
var chk_value =http://www.mamicode.com/[];
$(‘input[name="test"]:checked‘).each(function(){
chk_value.push($(this).val());
});
alert(chk_value.length==0 ?‘你还没有选择任何内容!‘:chk_value);
}

//jquery拼接字符串方法

  1. var str="";  
  2. $("[name=‘checkbox‘][checked]").each(function(){  
  3. str+=$(this).val()+"/r/n";  
  4. //alert($(this).val());  
  5. })  
  6. alert(str);