熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jquery做復選框的全選、全部選、反選

2022-06-13   來源: JSP教程 

  <!DOCTYPE html PUBLIC "//WC//DTD XHTML Transitional//EN" "

  <html xmlns=" <head> <meta httpequiv="ContentType" content="text/html; charset=utf" /> <title>復選框的全選反選全不選</title> <style> body{ margin:px;} </style> <script language="javascript" type="text/javascript" src="/script/jqueryminjs"></script> <script> $(function(){ $("input[value=全選]")click(function(){ $("input[type=checkbox]")attr("checked"true); }) $("input[value=全不選]")click(function(){ $("input[type=checkbox]")attr("checked"false); }) $("input[value=反選]")click(function(){ $("input[type=checkbox]")each(function(){ $(this)attr("checked"!$(this)attr("checked")); }) }) }) </script> </head> <body> <div id="div"> <input type="checkbox" />蘋果 <input type="checkbox" />香蕉 <input type="checkbox" />菠蘿 <input type="checkbox" />草莓 <input type="checkbox" />梨子<br /> <input type="button" value="全選" /><input type="button" value="反選" /><input type="button" value="全不選" /> </div> </body> </html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20606.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.