當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery :checkbox用法及代碼示例


複選框是與用戶進行交互的非常重要的元素。在JQuery中,我們可以構建一個簡單的複選框以允許數據輸入。

用法:

$(":checkbox")

我們可以在代碼中實現複選框:
例:



<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
  </script> 
      
  <style> 
        p { 
            font-size:20px 
        } 
    </style> 
    <script> 
        $(document).ready(function() { 
            $(":checkbox").wrap( 
            "<span style='background-color:green'>"); 
        }); 
    </script> 
</head> 
  
<body> 
  
    <h2>Add your Hobbies:</h2> 
    <p>Dancing:
        <input type="checkbox"
               name="hobbies" 
               value="dancing"> 
        <br> Painting:
        
        <input type="checkbox"
               name="hobbies"
               value="painting"> 
        <br> Singing:
        
        <input type="checkbox"
               name="hobbies" 
               value="singing"> 
        <br> 
    </p> 
  
</body> 
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自XDoodler大神的英文原創作品 jQuery | :checkbox Selector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。