jquery獲取復(fù)選框checkbox的值實現(xiàn)方法
jQuery API :
each(callback)::以每一個匹配的元素作為上下文來執(zhí)行一個函數(shù)。
:checked :匹配所有選中的被選中元素(復(fù)選框、單選框等,不包括select中的option)
js:
//js獲取復(fù)選框值 var obj = document.getElementsByName("interest");//選擇所有name="interest"的對象,返回數(shù)組 var s='';//如果這樣定義var s;變量s中會默認(rèn)被賦個null值 for(var i=0;i<obj.length;i++){ if(obj[i].checked) //取到對象數(shù)組后,我們來循環(huán)檢測它是不是被選中 s+=obj[i].value+','; //如果選中,將value添加到變量s中 }
jquery:
//jquery獲取復(fù)選框值 var chk_value =[];//定義一個數(shù)組 $('input[name="interest"]:checked').each(function(){//遍歷每一個名字為interest的復(fù)選框,其中選中的執(zhí)行函數(shù) chk_value.push($(this).val());//將選中的值添加到數(shù)組chk_value中 });
其中jsp頁面代碼
<%@ page language="java" contentType="text/html" import="java.util.*" pageEncoding="GBK"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; // basePath = http :// 127.0.0.1 : 8080 /DWR_checkbox / %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>DWR獲取瀏覽器頁面信息</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> <script type="text/javascript" src="jquery-1.7.2.js"></script> <script type='text/javascript' src='<%=path%>/dwr/engine.js'></script> <script type='text/javascript' src='<%=path%>/dwr/util.js'></script> <script type='text/javascript' src='<%=path%>/dwr/interface/test.js'></script> <script type='text/javascript' src='<%=path%>/dwr/interface/test1.js'></script> <script type='text/javascript' src='<%=path%>/dwr/interface/userLogin.js'></script> <script type="text/javascript"> function ceshi1() { test.hasPermission(mydwr("user").value,mydwr("pass").value, // 使用$()屬性獲取當(dāng)前頁面輸入的用戶名和權(quán)限的值 function(data) { if(data) { mydwr("hp1").checked = "checked"; }else{ mydwr("hp1").checked = null; } document.getElementById("boolean1").value = data; }); } function ceshi2() { test.hasPermission(dwr.util.getValue("username"),dwr.util.getValue("password"),// 使用DWR中的util.js工具中的屬性獲取當(dāng)前頁面輸入的用戶名和權(quán)限的值,給后臺.java的hasPermission方法的參數(shù)賦值,再執(zhí)行此方法(不是void類型有返回值)得到個返回值。 function(data) { if(data) { document.getElementById("hp").checked = "checked"; // 使用byId()屬性獲取當(dāng)前頁面checkbox的checked屬性 }else{ document.getElementById("hp").checked = null; } document.getElementById("boolean2").value = data; dwr.util.setValue("boolean3",data); //dwr.util.setValue(boolean3,"哈哈"); dwr.util.setValue(div,data); //dwr.util.setValue(body,data); }); // 用function(data)方法來處理后臺.java方法執(zhí)行后的返回值,存在data變量中,在執(zhí)行function(data)方法的語句 } function invoke1() { dwr.engine.setAsync(false);//<!-- 默認(rèn)是異步執(zhí)行的true,設(shè)置成false就是同步執(zhí)行 方法按順序執(zhí)行--> test1.method1( function(data){ alert(data); } ); test1.method2( function(data){ alert(data); } ); } function invoke2(){ test.getArray( function(data) { //for(var i=0;i<data.length;i++){ // alert(data[i]); //} dwr.util.addOptions(selectid,data);//根據(jù)后臺數(shù)組值填充ID為selectid的列表 }); } function invoke3(){ dwr.util.removeAllRows(tid);//根據(jù)tbody的id刪除該tbody } function invoke4(){ var a=dwr.util.getText(selectid); dwr.util.setValue(tdid,a); } function show() { var name = document.getElementById("user").value; var pass = document.getElementById("pass").value; var obj = new objBean(name,pass); userLogin.alterUser(obj, function(data){ if(name == data.username && pass == data.password){ alert("success"); }else{ alert("error"); } document.getElementById("user").value = data.username; document.getElementById("pass").value = data.password; }); } function objBean(name,pass) { this.username = name; this.password = pass; } function go_to() { $('#first_jsp').show(); test.getInclude(function(data){ $('#first_jsp').html(data); }); } function go_to_iframe() { $("#myframe1").show(); test.getIncludeBean(function(data){ $('#myframe1').attr('src',"<%=basePath%>"+data); }); } function getInfo(){ //js獲取復(fù)選框值 var obj = document.getElementsByName("interest");//選擇所有name="interest"的對象,返回數(shù)組 var s='';//如果這樣定義var s;變量s中會默認(rèn)被賦個null值 for(var i=0;i<obj.length;i++){ if(obj[i].checked) //取到對象數(shù)組后,我們來循環(huán)檢測它是不是被選中 s+=obj[i].value+','; //如果選中,將value添加到變量s中 } alert(s == '' ? '你還沒有選擇任何內(nèi)容!' :s); dwr.util.setValue(tdid,s); //jquery獲取復(fù)選框值 var chk_value =[];//定義一個數(shù)組 $('input[name="interest"]:checked').each(function(){//遍歷每一個名字為interest的復(fù)選框,其中選中的執(zhí)行函數(shù) chk_value.push($(this).val());//將選中的值添加到數(shù)組chk_value中 }); alert(chk_value.length==0 ?'你還沒有選擇任何內(nèi)容!':chk_value); dwr.util.setValue(checkboxInfo,chk_value); } </script> </head> <body id="body"> <form> <table id="tableid" border="1" align="center"> <tr><td>用戶名:</td><td><input id="user" type="text" name="username"/></td></tr> <tr><td>密碼:</td><td><input id="pass" type="text" name="password"/></td></tr> <tr> <td><input id="getInfo" type="button" value="獲取信息" onclick="show()"/></td> <td><input type="reset" value="重置" /></td> </tr> <tbody id="tid"> <tr> <td colspan="2" > <input id="hp1" type="checkbox" name="hpname" >測試權(quán)限<br> <input type="button"name="button"value="測試1" onclick="ceshi1()"> 返回值:<input id="boolean1" type="text" /> </td> </tr> <tr> <td > <input id="hp" type="checkbox" name="hpname" >測試權(quán)限<br> <input type="button"name="button"value="測試2" onclick="ceshi2()"> </td> <td> 返回值:<input id="boolean2" type="text" /> dwr.util.setValue:<input id="boolean3" type="text" /> <div id="div" > 這是一個div標(biāo)簽</div> </td> </tr> </tbody> <tr> <td id="tdid"colspan="2" >修改此行值</td> </tr> </table> </form> <input type="button"name="button"value="異步調(diào)用測試" onclick="invoke1()"> <input type="button"name="button"value="加載Array值" onclick="invoke2()"> <input type="button"name="button"value="刪除所有行" onclick="invoke3()"> <input type="button"name="button"value="修改行值" onclick="invoke4()"> <div> <select id="selectid"></select> </div> <input type="button"name="button"value="框架(iframe)中加載bean.jsp" onclick="go_to_iframe()"> <input type="button"name="button"value="DIV中加載first.jsp" onclick="go_to()"> <iframe id="myframe1" style="width:500;height:200;border:10px;padding:0px;display:none" src="" ></iframe> <div id="first_jsp" style="width: 100%; height: auto; display:none"></div> <form> <input type="checkbox" name="interest" value="VC" />VC <input type="checkbox" name="interest" value="VB" />VB <input type="checkbox" name="interest" value="VFoxpro" />VFoxpro <input type="checkbox" name="interest" value="VJava" />VJava <input type="checkbox" name="interest" value="BC" />BC <input type="checkbox" name="interest" value="Cobol" />COobol <input type="checkbox" name="interest" value="Java" />Java <input type="checkbox" name="interest" value="Delphi" />Delphi <input type="button" value="獲取復(fù)選框值" onclick="getInfo()"> </form> <div id="checkboxInfo" style="width: 100%; height: auto; display:block"></div> </body> </html>
以上這篇jquery獲取復(fù)選框checkbox的值實現(xiàn)方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
jquery next nextAll nextUntil siblings的區(qū)別介紹
在本文為大家詳細(xì)介紹下jquery next nextAll nextUntil siblings的區(qū)別,感興趣的朋友可以參考下2013-10-10Jqyery中同等與js中windows.onload的應(yīng)用
我們知道,在javascript中用來執(zhí)行頁面加載中的操作時候,我們會使用windows.onload=function(){}或者windows.onload=函數(shù)名(),也可以在body中調(diào)用onload事件調(diào)用方法即可,在jQuery中也有相當(dāng)?shù)拇a2011-05-05jQuery插件jPaginate實現(xiàn)無刷新分頁
我改了下源碼基本可以在ie7,ie8,ie9正常顯示。以下是部分源碼。發(fā)現(xiàn)用別人的東西出了問題很難搞啊。關(guān)鍵是那個ie啊。2015-05-05jQuery ajax BUG:object doesn''t support this property or met
使用$.ajax時出現(xiàn)的錯誤,IE7下才會出錯,IE6,IE8都正常。2010-07-07jquery判斷RadioButtonList和RadioButton中是否有選中項示例
用jquery判斷RadioButtonList和RadioButton中是否有選中項,下面有個不錯的示例,感興趣的朋友可以參考下2013-09-09