歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

jQuery獲取頁面上復選框的值

jQuery獲取頁面上復選框的值:

$('input:checkbox').each(function(){

      //復選框選中的時候彈出選中的復選框的value值

      if($(this).attr('checked')==true){

           alert($(this).val());

     }else{

          //復選框沒有選中的時候彈出的復選框的value值

          alert($(this).val());

    }

});

Copyright © Linux教程網 All Rights Reserved