ferrarisp

checkboxs-selecionados.html

Jan 26th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 1.00 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <!-- saved from url=(0068)http://www.criarweb.com/artigos/exemplos/jquery/mostrar-ocultar.html -->
  3. <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  4.        
  5. <script>
  6. $(document).ready(function(){
  7.             $('.checkall').on('click', function () {  
  8.                 $(this).closest('table').find(':checkbox').prop('checked', this.checked);  
  9.             });
  10.  
  11.             $("#teste").click(function(){
  12.  
  13.                 $("#ckb_resp2").prop('checked', true);
  14.             }) 
  15. });
  16. </script>
  17. </head>
  18.  
  19. <body>
  20.  
  21.  <html>  
  22.  <table>  
  23.    <tr><td><input type="checkbox" class="checkall"> Check all</td></tr>  
  24.    <tr><td><input type="checkbox"> Checkbox</td></tr>  
  25.    <tr><td><input type="checkbox"> Checkbox</td></tr>  
  26.    <tr><td><input type="checkbox"> Checkbox</td></tr>
  27.     <input id="ckb_resp2" name="ckb_resp" value="1" type="checkbox">
  28.     <br>
  29.     <button id="teste" type="button" class="btn btn-primary">Testeeee</button></center>
  30.  </table>
  31. <br>
  32.  </html>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment