Home  >  Article  >  Web Front-end  >  jquery如何判断checkbox(复选框)是否被选中_html/css_WEB-ITnose

jquery如何判断checkbox(复选框)是否被选中_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:17:141274browse

谁都知道 在html 如果一个复选框被选中 是 checked="checked"。

但是我们如果用jquery alert($("#id").attr("checked")) 会提示您是true而不是checked

所以很多朋友判断  if($("#id").attr("checked")=="true") 这个是错误的,其实应该是 if($("#id").attr("checked")==true)

例子里面包括了一下几个功能。

   
  
  
  
  

代码

 



 


  New Document
 
   
 
  
 

 


 

  
  
  
  
  
  

  
   checkbox1
  
   checkbox2
  
   checkbox3
  
   checkbox4
  
   checkbox5
  
   checkbox6
  
   checkbox7
  
 checkbox8
 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn