複選框是與用戶進行交互的非常重要的元素。在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>
輸出:
相關用法
- jQuery :first用法及代碼示例
- jQuery :even用法及代碼示例
- jQuery :not()用法及代碼示例
- jQuery :lt()用法及代碼示例
- jQuery :gt()用法及代碼示例
- jQuery :last用法及代碼示例
- jQuery :odd用法及代碼示例
- jQuery :contains()用法及代碼示例
注:本文由純淨天空篩選整理自XDoodler大神的英文原創作品 jQuery | :checkbox Selector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。