jQuery :radio 选择器 概述
jQuery 2022-06-01 12:03:09小码哥的IT人生shichen
jQuery :radio 选择器
实例
隐藏所有 type="radio" 的 <input> 元素:
$(":radio")
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$(":checkbox").hide();
});
});
</script>
</head>
<body>
<form action="">
I have a bike:
<input type="checkbox" name="vehicle" value="Bike" />
<br />
I have a car:
<input type="checkbox" name="vehicle" value="Car" />
<br />
I have an airplane:
<input type="checkbox" name="vehicle" value="Airplane" />
</form>
<button class="btn1">Hide Checkboxes</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
:radio 选择器选取类型为 radio 的 <input> 元素。
语法
$(":radio")