Posted in Javascript onJanuary 28, 2015
本文实例讲述了js获取checkbox值的方法。分享给大家供大家参考。具体实现方法如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>js</title> </head> <script language="javascript"> function aa(){ var r=document.getElementsByName("r"); for(var i=0;i<r.length;i++){ if(r[i].checked){ alert(r[i].value+","+r[i].nextSibling.nodeValue); } } } </script> <body> <form name="form1" method="post" action=""> <input type="checkbox" name="r" value="1">a<br> <input type="checkbox" name="r" value="2">b<br> <input type="checkbox" name="r" value="3">c<br> <input type="checkbox" name="r" value="4">d<br> <input type="checkbox" name="r" value="5">e<br> <input type="checkbox" name="r" value="6">f<br> <input type="checkbox" name="r" value="7">g<br> <input type="checkbox" name="r" value="8">h<br> <input type="checkbox" name="r" value="9">i<br> <input type="checkbox" name="r" value="10">j<br> <br> <input type="button" onclick="aa()" value="button"> </form> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
js获取checkbox值的方法
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@