1.  
  2.      
  3.         "text/javascript" src="jquery-1.6.2.js"
  4.         "text/javascript"
  5.             $(function() 
  6.             { 
  7.                 alert($('.test :hidden').length);   //read in sequence, first .test then :hidden 
  8.                 alert($('.test:hidden').length);    //read simultaneously, .test && :hidden 
  9.             });          
  10.          
  11.      
  12.            
  13.         class="test"
  14.             "display:none">aaa
 
  •             "display:none">bbb