欧美一区二区三区性视频_婷婷综合另类小说色区_亚洲av乱码一区二区三区林ゆな_天堂在线资源中文在线8_久久这里只有精品首页

妙網(wǎng)科技 妙網(wǎng)科技 首頁(yè) 妙網(wǎng)科技 網(wǎng)站開(kāi)發(fā) 妙網(wǎng)科技 JQ至少選擇一個(gè)復(fù)選框代碼

JQ至少選擇一個(gè)復(fù)選框代碼

所屬欄目: 網(wǎng)站開(kāi)發(fā) | 更新時(shí)間:2016-7-8 | 閱讀:3818 次
<html>
 <head>
  <title></title>
  <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
  <script type="text/javascript">
  $(function(){ 
   $('#submit').click(function(){
    if($(":checkbox[checked = true]").size()<1){
     alert("最少選擇一個(gè)復(fù)選框!");
     return false;
    } alert('OK')
   });
  })    
 </script>
 </head>
 <body>
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="checkbox" >
  <input type="button" id="submit" value=" 提 交 ">
 </body>
</html>
?