首頁  >  文章  >  web前端  >  關於jQuery方法輸出的實例程式碼

關於jQuery方法輸出的實例程式碼

零下一度
零下一度原創
2017-06-29 13:43:451109瀏覽

每選取一個多選框,輸出有多少個選取

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="js/jquery.1.1.1.js?1.1.11">
</script><script> $(function () {             
function countChecked() {var n=$("#form1 input[type=checkbox]:checked").length;
                
                $("div:first").html("有"+n+"个checkbox被选中");
            }
            $("#form1 input[type=checkbox]").click(countChecked);//每选一个框调用一次函数,不带括号
         })
         </script></head><body><form action="" id="form1">
         <input type="checkbox" name="newsletter" checked="checked" value="test1" />
         test1<input type="checkbox" name="newsletter" value="test2" />
         test2<input type="checkbox" name="newsletter" value="test3" />
         test3<input type="checkbox" name="newsletter" checked="checked" value="test4" />
         test4<input type="checkbox" name="newsletter" value="test5" />
         test5<div>
         </div>
         </form>
         </body>
         </html>

 

以上是關於jQuery方法輸出的實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn