jquery解决input[type=radio]点击选中取消
input[type=radio] 点击选中后,再次点击选中项,默认是不会取消的。用jquery实现点击选中取消的代码:
<input type="radio" name="hobby"> 篮球
<input type="radio" name="hobby"> 足球
<input type="radio" name="hobby"> 网球
$(document).on('click','input[name="hobby"]',function() {
var name = $(this).attr("name");
$(":radio[name="+ name +"]:not(:checked)").attr("tag",0);
if( $(this).attr("tag") == 1 ) {
$(this).attr("checked",false);
$(this).attr("tag",0);
}else {
$(this).attr("tag",1);
}
});
转载于:https://www.cnblogs.com/wlgz/p/8295401.html
相关知识
前端——table标签和form标签和控件:table,input的type类型,select和option,label,textarea
点击input checkbox之后代码里面自动添加checked=“checked”
自定义(滑动条)input[type=“range”]样式
angular
设置type=“range”为vertical
使input type=“file” 不可编辑
input[type=“file”] change事件第二次不触发
input type=range 进度条的自定义样式
HTML网页设计:十一、表单
小程序checkbox,radio组件
原文链接: jquery解决input[type=radio]点击选中取消 https://www.huajiangbk.com/newsview846425.html
| 上一篇: 云南铁皮石斛干花效果怎么样 | 下一篇: 杭州花卉租赁服务的效果评价 |
推荐分享

- 1君子兰什么品种最名贵 十大名... 4469
- 2明日花キララ:明日花绮罗年度... 4372
- 3世界上最名贵的10种兰花图片... 3777
- 4花圈挽联怎么写? 3712
- 5鲜花养护:帝王花的养殖方法以... 3639
- 6明日花キララ(明日花绮罗)经... 2314
- 7迷信说家里不能放假花 家里摆... 2256
- 8香山红叶什么时候红 1871
- 9花的意思,花的解释,花的拼音... 1582
- 10教师节送什么花最合适 1559




