当前位置: 首页 > 编程笔记 >

三种取消选中单选框radio的方法

汤乐家
2023-03-14
本文向大家介绍三种取消选中单选框radio的方法,包括了三种取消选中单选框radio的方法的使用技巧和注意事项,需要的朋友参考一下

本文提供了三种取消选中radio的方式,代码示例如下:

本文依赖于jQuery,其中第一种,第二种方式是使用jQuery实现的,第三种方式是基于JS和DOM实现的。

<!DOCTYPE HTML> 
<html> 
<head> 
<title>单选按钮取消选中的三种方式</title> 
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js"> 
</script> 
<script type="text/javascript"> 
$(function(){ 
// 
var $browsers = $("input[name=browser]"); 
var $cancel = $("#cancel"); 
var $byhide = $("#byhide"); 
var $remove = $("#remove"); 
// 
$cancel.click(function(e){ 
// 移除属性,两种方式都可 
//$browsers.removeAttr("checked"); 
$browsers.attr("checked",false); 
}); 
// 
$byhide.click(function(e){ 
// 切换到一个隐藏域,两种方式均可 
//$("#hidebrowser").attr("checked",true); 
$("#hidebrowser").attr("checked","checked"); 
}); 
// 
$remove.click(function(e){ 
// 直接去的DOM元素,移除属性 
// 如果不使用jQuery,则可以移植此方式 
var checkedbrowser=document.getElementsByName("browser"); 
/* 
$.each(checkedbrowser, function(i,v){ 
v.checked = false; 
v.removeAttribute("checked"); 
}); 
*/ 
// 
var len = checkedbrowser.length; 
var i = 0; 
for(; i < len; i++){ 
// 必须先赋值为false,再移除属性 
checkedbrowser[i].checked = false; 
// 不移除属性也可以 
//checkedbrowser[i].removeAttribute("checked"); 
} 

}); 
}); 
</script> 
</head> 
<body> 
<p>您喜欢哪款浏览器?</p> 

<form> 
<input style="display:none;" id="hidebrowser" type="radio" name="browser" value=""> 
<input type="radio" name="browser" value="Internet Explorer">Internet Explorer<br /> 
<input type="radio" name="browser" value="Firefox">Firefox<br /> 
<input type="radio" name="browser" value="Netscape">Netscape<br /> 
<input type="radio" name="browser" value="Opera">Opera<br /> 
<br /> 
<input type="button" id="cancel" value="取消选中方式1" size="20"> 
<input type="button" id="byhide" value="取消选中方式2" size="20"> 
<input type="button" id="remove" value="取消选中方式3" size="20"> 
</form> 

</body> 
</html>
 类似资料:
  • 介绍 用于在多个选项中选择单个结果。 引入 import { createApp } from 'vue'; import { RadioGroup, Radio } from 'vant'; const app = createApp(); app.use(Radio); app.use(RadioGroup); 代码演示 基础用法 通过 v-model 绑定值当前选中项的 name。 <v

  • radio用于单选的情况 DOM结构 <div class="mui-input-row mui-radio"> <label>radio</label> <input name="radio1" type="radio"> </div> 默认radio在右侧显示,若希望在左侧显示,只需增加.mui-left类即可,如下: <div class="mui-input-row mui-

  • Radio 单选框 在一组备选项中进行单选 基础用法 由于选项默认可见,不宜过多,若选项过多,建议使用 Select 选择器。 要使用 Radio 组件,只需要设置v-model绑定变量,选中意味着变量的值为相应 Radio label属性的值,label可以是String、Number或Boolean。 <template> <el-radio v-model="radio" label="

  • 定义 单选框组件 图片展示 代码演示 import Form from 'pile/dist/components/form' const {Radio} = Form const _Radio = React.createClass({ getInitialState() { return { radio1 : 1 } }, render() { let {radio1} =

  • Select one of a set of options. Basic <radio>Radio</radio> Disabled <radio disabled="disabled">Disabled</radio> <radio disabled="disabled" checked="checked">Disabled</radio> Group <radio-group> <r

  • Radio 单选框 平台差异说明 App H5 微信小程序 支付宝小程序 百度小程序 头条小程序 QQ小程序 √ √ √ √ √ √ √ 基本使用 该组件需要搭配radioGroup组件使用,以便用户进行操作时,获得当前单选框组的选中情况,当然,您也可以单独对某个radio进行事件监听 通过v-model给radioGroup组件绑定一个变量,这个绑定的变量是双向的(初始值只能是true或者fal