jquery獲取復(fù)選框被選中的值
更新時間:2014年03月22日 16:29:45 作者:
這篇文章主要介紹了jquery獲取復(fù)選框被選中的值的方法,需要的朋友可以參考下
復(fù)制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<mce:style><!--
--></mce:style><style mce_bogus="1">
</style>
<title>JS獲取復(fù)選框被選中的值</title>
</head>
<body>
<input type="checkbox" name="test" value="0" />0
<input type="checkbox" name="test" value="1" />1
<input type="checkbox" name="test" value="2" />2
<input type="checkbox" name="test" value="3" />3
<input type="checkbox" name="test" value="4" />4
<input type="checkbox" name="test" value="5" />5
<input type="checkbox" name="test" value="6" />6
<input type="checkbox" name="test" value="7" />7
<input type="button" onclick="chk()" value="提 交" />
</body>
</html
JS代碼
復(fù)制代碼 代碼如下:
<mce:script src="jquery.js" mce_src="jquery.js"></mce:script><!--這是載入jquery.js文件,如果不使用jquery可以去掉-->
<mce:script type="text/javascript"><!--
function chk(){
var obj=document.getElementsByName('test'); //選擇所有name="'test'"的對象,返回數(shù)組
//取到對象數(shù)組后,我們來循環(huán)檢測它是不是被選中
var s='';
for(var i=0; i<obj.length; i++){
if(obj[i].checked) s+=obj[i].value+','; //如果選中,將value添加到變量s中
}
//那么現(xiàn)在來檢測s的值就知道選中的復(fù)選框的值了
alert(s==''?'你還沒有選擇任何內(nèi)容!':s);
}
function jqchk(){ //jquery獲取復(fù)選框值
var chk_value =[];
$('input[name="test"]:checked').each(function(){
chk_value.push($(this).val());
});
alert(chk_value.length==0 ?'你還沒有選擇任何內(nèi)容!':chk_value);
}
// --></mce:script>
對checkbox的其他幾個操作
1. 全選
2. 取消全選
3. 選中所有奇數(shù)
4. 反選
5. 獲得選中的所有值
js代碼
復(fù)制代碼 代碼如下:
$("document").ready(function(){
$("#btn1").click(function(){
$("[name='checkbox']").attr("checked",'true');//全選
})
$("#btn2").click(function(){
$("[name='checkbox']").removeAttr("checked");//取消全選
})
$("#btn3").click(function(){
$("[name='checkbox']:even").attr("checked",'true');//選中所有奇數(shù)
})
$("#btn4").click(function(){
$("[name='checkbox']").each(function(){//反選
if($(this).attr("checked")){
$(this).removeAttr("checked");
}
else{
$(this).attr("checked",'true');
}
})
})
$("#btn5").click(function(){//輸出選中的值
var str="";
$("[name='checkbox'][checked]").each(function(){
str+=$(this).val()+"/r/n";
//alert($(this).val());
})
alert(str);
})
})
html代碼:
復(fù)制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>louis-blog >> jQuery 對checkbox的操作</title>
<mce:script type='text/javascript' src="http://leotheme.cn/wp-includes/js/jquery/jquery.js" mce_src="http://leotheme.cn/wp-includes/js/jquery/jquery.js"></mce:script>
<SCRIPT LANGUAGE="JavaScript">
<!--
$("document").ready(function(){
$("#btn1").click(function(){
$("[name='checkbox']").attr("checked",'true');//全選
})
$("#btn2").click(function(){
$("[name='checkbox']").removeAttr("checked");//取消全選
})
$("#btn3").click(function(){
$("[name='checkbox']:even").attr("checked",'true');//選中所有奇數(shù)
})
$("#btn4").click(function(){
$("[name='checkbox']").each(function(){//反選
if($(this).attr("checked")){
$(this).removeAttr("checked");
}
else{
$(this).attr("checked",'true');
}
})
})
$("#btn5").click(function(){//輸出選中的值
var str="";
$("[name='checkbox'][checked]").each(function(){
str+=$(this).val()+"/r/n";
//alert($(this).val());
})
alert(str);
})
})
-->
</SCRIPT>
</HEAD>
<body style="text-align:center;margin: 0 auto;font-size: 12px;" mce_style="text-align:center;margin: 0 auto;font-size: 12px;">
<div style="border: 1px solid #999; width: 500px; padding: 15px; background: #eee; margin-top: 150px;">
<form name="form1" method="post" action="">
<input type="button" id="btn1" value="全選">
<input type="button" id="btn2" value="取消全選">
<input type="button" id="btn3" value="選中所有奇數(shù)">
<input type="button" id="btn4" value="反選">
<input type="button" id="btn5" value="獲得選中的所有值">
<br /><br />
<input type="checkbox" name="checkbox" value="checkbox1">
checkbox1
<input type="checkbox" name="checkbox" value="checkbox2">
checkbox2
<input type="checkbox" name="checkbox" value="checkbox3">
checkbox3
<input type="checkbox" name="checkbox" value="checkbox4">
checkbox4
<input type="checkbox" name="checkbox" value="checkbox5">
checkbox5
<input type="checkbox" name="checkbox" value="checkbox6">
checkbox6
</form>
</div>
</body>
</HTML>
您可能感興趣的文章:
- javascript判斷單選框或復(fù)選框是否選中方法集錦
- JavaScript簡單判斷復(fù)選框是否選中及取出值的方法
- 關(guān)于extjs treepanel復(fù)選框選中父節(jié)點與子節(jié)點的問題
- js實現(xiàn)選中復(fù)選框文字變色的方法
- javascript實現(xiàn)復(fù)選框選中屬性
- javascript判斷復(fù)選框是否選中的方法
- JavaScript檢測并限制復(fù)選框選中個數(shù)的方法
- js全選實現(xiàn)和判斷是否有復(fù)選框選中的方法
- jquery獲取復(fù)選框被選中的值
- jquery判斷復(fù)選框是否被選中的方法
- jQuery實現(xiàn)獲取選中復(fù)選框的值實例詳解
- js判斷復(fù)選框是否選中的方法示例【基于jQuery】
相關(guān)文章
簡單易用的基于jQuery版仿新浪微博向下滾動效果(附DEMO)
jquery版,簡單易用的jQuery 版仿新浪微博 向下滾動效果,現(xiàn)在越來越發(fā)現(xiàn)jquery太強大咯,哈哈。2011-02-02EasyUi 打開對話框后控件賦值及賦值后不顯示的問題解決辦法
這篇文章主要介紹了easyUi 打開對話框后控件賦值,以及賦值后不顯示的問題解決辦法,解決方法非常簡單,只需要將賦值語句修改下就好,下面小編給大家簡單介紹下,需要的朋友參考下2017-01-01關(guān)于用Jquery的height()、width()計算動態(tài)插入的IMG標(biāo)簽的寬高的問題
關(guān)于用Jquery的height()、width()計算動態(tài)插入的IMG標(biāo)簽的寬高的問題的解決方法,需要的朋友可以參考下。2010-12-12