用Jquery获取checkbox多个选项

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<htmlxmlns="http://www.w3.org/1999/xhtml">

<head>

<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>

<title>louis-blog>>jQuery对checkbox的操作</title>

<scripttype='text/javascript'src="jquery.js"></script>

<SCRIPTLANGUAGE="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');//选中所有奇数

})

$("#btn4").click(function(){

$("[name='checkbox']").each(function(){//反选

if($(this).attr("checked")){

$(this).removeAttr("checked");

}

else{

$(this).attr("checked",'true');

}

})

})

$("#btn5").click(function(){//输出选中的值

varstr="";

$("[name='checkbox'][checked]").each(function(){

str+=$(this).val()+"\r\n";

//alert($(this).val());

})

alert(str);

})

})

-->

</SCRIPT>

</HEAD>

<bodystyle="text-align:center;margin:0auto;font-size:12px;">

<divstyle="border:1pxsolid#999;width:500px;padding:15px;background:#eee;margin-top:150px;">

<formname="form1"method="post"action="">

<inputtype="button"id="btn1"value="全选">

<inputtype="button"id="btn2"value="取消全选">

<inputtype="button"id="btn3"value="选中所有奇数">

<inputtype="button"id="btn4"value="反选">

<inputtype="button"id="btn5"value="获得选中的所有值">

<br><br>

<inputtype="checkbox"name="checkbox"value="checkbox1">

checkbox1val

<inputtype="checkbox"name="checkbox"value="checkbox2">

checkbox2val

<inputtype="checkbox"name="checkbox"value="checkbox3">

checkbox3val

<inputtype="checkbox"name="checkbox"value="checkbox4">

checkbox4val

<inputtype="checkbox"name="checkbox"value="checkbox5">

checkbox5val

<inputtype="checkbox"name="checkbox"value="checkbox6">

checkbox6val

</form>

</div>

</body>

</HTML>

1,下拉框:

varcc1=$(".formcselect[@name='country']option[@selected]").text();//得到下拉菜单的选中项的文本(注意中间有空格)

varcc2=$('.formcselect[@name="country"]').val();//得到下拉菜单的选中项的值

varcc3=$('.formcselect[@name="country"]').attr("id");//得到下拉菜单的选中项的ID属性值

$("#select").empty();//清空下拉框//$("#select").html('');

$("<optionvalue='1'>1111</option>").appendTo("#select")//添加下拉框的option

稍微解释一下:

1.select[@name='country']option[@selected]表示具有name属性,

并且该属性值为'country'的select元素里面的具有selected属性的option元素;

可以看出有@开头的就表示后面跟的是属性。

2,单选框:

$("input[@type=radio][@checked]").val();//得到单选框的选中项的值(注意中间没有空格)

$("input[@type=radio][@value=2]").attr("checked",'checked');//设置单选框value=2的为选中状态.(注意中间没有空格)

3,复选框:

$("input[@type=checkbox][@checked]").val();//得到复选框的选中的第一项的值

$("input[@type=checkbox][@checked]").each(function(){//由于复选框一般选中的是多个,所以可以循环输出

alert($(this).val());

});

$("#chk1").attr("checked",'');//不打勾

$("#chk2").attr("checked",true);//打勾

if($("#chk1").attr('checked')==true){}//判断是否已经打勾

当然jquery的选择器是强大的.还有很多方法.

另外我自己也写过一个jquery的复选框小插件.嘿嘿.可以参考参考.

http://www.cssrain.cn/demo/jquery-check/checkbox.html

<scriptsrc="jquery-1.2.1.js"type="text/javascript"></script>

<scriptlanguage="javascript"type="text/javascript">

$(document).ready(function(){

$("#selectTest").change(function()

{

//alert("Hello");

//alert($("#selectTest").attr("name"));

//$("a").attr("href","xx.html");

//window.location.href="xx.html";

//alert($("#selectTest").val());

alert($("#selectTestoption[@selected]").text());

$("#selectTest").attr("value","2");

});

});

</script>

<ahref="#">aaass</a>

<!--下拉框-->

<selectid="selectTest"name="selectTest">

<optionvalue="1">11</option>

<optionvalue="2">22</option>

<optionvalue="3">33</option>

<optionvalue="4">44</option>

<optionvalue="5">55</option>

<optionvalue="6">66</option>

</select>

jqueryradio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关获取一组radio被选中项的值

varitem=$('input[@name=items][@checked]').val();

获取select被选中项的文本

varitem=$("select[@name=items]option[@selected]").text();

select下拉框的第二个元素为当前选中值

$('#select_id')[0].selectedIndex=1;

radio单选组的第二个元素为当前选中值

$('input[@name=items]').get(1).checked=true;

获取值:

文本框,文本区域:$("#txt").attr("value");

多选框checkbox:$("#checkbox_id").attr("value");

单选组radio:$("input[@type=radio][@checked]").val();

多组单选按钮:$("input[@typ=radio][@name=''][@checked]")

下拉框select:$('#sel').val();

控制表单元素:

文本框,文本区域:$("#txt").attr("value",'');//清空内容

$("#txt").attr("value",'11');//填充内容

多选框checkbox:$("#chk1").attr("checked",'');//不打勾

$("#chk2").attr("checked",true);//打勾

if($("#chk1").attr('checked')==undefined)//判断是否已经打勾

单选组radio:$("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项

下拉框select:$("#sel").attr("value",'-sel3');//设置value=-sel3的项目为当前选中项

$("<optionvalue='1'>1111</option><optionvalue='2'>2222</option>").appendTo("#sel")//添加下拉框的option

$("#sel").empty();//清空下拉框

获取一组radio被选中项的值

varitem=$('input[@name=items][@checked]').val();

获取select被选中项的文本

varitem=$("select[@name=items]option[@selected]").text();

select下拉框的第二个元素为当前选中值

$('#select_id')[0].selectedIndex=1;

radio单选组的第二个元素为当前选中值

$('input[@name=items]').get(1).checked=true;

获取值:

文本框,文本区域:$("#txt").attr("value");

多选框checkbox:$("#checkbox_id").attr("value");

单选组radio:$("input[@type=radio][@checked]").val();

下拉框select:$('#sel').val();

控制表单元素:

文本框,文本区域:$("#txt").attr("value",'');//清空内容

$("#txt").attr("value",'11');//填充内容

多选框checkbox:$("#chk1").attr("checked",'');//不打勾

$("#chk2").attr("checked",true);//打勾

if($("#chk1").attr('checked')==undefined)//判断是否已经打勾

单选组radio:$("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项

下拉框select:$("#sel").attr("value",'-sel3');//设置value=-sel3的项目为当前选中项

$("<optionvalue='1'>1111</option><optionvalue='2'>2222</option>").appendTo("#sel")//添加下拉框的option

$("#sel").empty();//清空下拉框

相关推荐