我有很多单选按钮从我的数据库中获取值,如果设置为“1”,我会选中单选按钮。
如果选中单选按钮,并且用户再次单击它,我仍然希望能够清除此按钮。有没有人有想法?
$radio1
从数据库中获取数据,并且将为0,1或2
<input value="1" name="radio1" type="radio"<?php if($radio1==1){echo " checked";} ?>>
<input value="2" name="radio2" type="radio"<?php if($radio1==2){echo " checked";} ?>>
Varun Malhotra的答案略有修改: 我改变了2行代码,对我来说效果更好。但总的来说,Varun的回答是完美的!
$('input[type="radio"]').click(function(){
var $radio = $(this);
// if this was previously checked
if ($radio.data('waschecked') == true)
{
$radio.prop('checked', false);
$radio.data('waschecked', false);
}
else
{
$radio.prop('checked', true);
$radio.data('waschecked', true);
}
// remove was checked from other radios
$radio.siblings('input[type="radio"]').data('waschecked', false);
});
答案 0 :(得分:12)
我建议添加一个自定义属性来跟踪每个收音机的先前状态,如下所示:
$(function(){
$('input[name="rad"]').click(function(){
var $radio = $(this);
// if this was previously checked
if ($radio.data('waschecked') == true)
{
$radio.prop('checked', false);
$radio.data('waschecked', false);
}
else
$radio.data('waschecked', true);
// remove was checked from other radios
$radio.siblings('input[name="rad"]').data('waschecked', false);
});
});
您还需要将此属性添加到最初检查的无线电标记
<input type="radio" name="rad" id="Radio0" checked="checked" data-waschecked="true" />
<强> JSFIDDLE DEMO 强>
<强>更新强>
$(function(){
$('input[name="rad"]').click(function(){
var $radio = $(this);
// if this was previously checked
if ($radio.data('waschecked') == true)
{
$radio.prop('checked', false);
$radio.data('waschecked', false);
}
else
$radio.data('waschecked', true);
// remove was checked from other radios
$radio.siblings('input[type="radio"]').data('waschecked', false);
});
});
但请确保您没有其他无线电组可以使用,否则您必须提供一些属性来指定这些按钮,就像我之前关注的名称一样。
答案 1 :(得分:2)
首次点击时,点击前更改事件触发。你可以使用它们。与许多无线电组合作,即使您已经预先检查了单选按钮。
$("input[type=radio]").each(function() {
var secondClick = true;
$(this).change(function() {
secondClick = false;
});
$(this).click(function() {
if (secondClick) {
$(this).prop("checked", false);
}
secondClick = true;
});
});
答案 2 :(得分:1)
这应该比其他解决方案更通用,因为它处理所有无线电不在同一父母中的情况。
var $radios = $('input[type="radio"]');
$radios.click(function () {
var $this = $(this);
if ($this.data('checked')) {
this.checked = false;
}
var $otherRadios = $radios.not($this).filter('[name="'
+ $this.attr('name') + '"]');
$otherRadios.prop('checked', false).data('checked', false);
$this.data('checked', this.checked);
});
答案 3 :(得分:1)
尝试一下
$('input[name="rad"]').click(function(){
var $radio = $(this);
// if this was previously checked
if ($radio.data('waschecked') == true)
{
$radio.prop('checked', false);
$radio.data('waschecked', false);
}
else{
$radio.data('waschecked', true);
}
// remove was checked from other radios
$('input[name="rad"]').not($(this)).data('waschecked', false);
});
答案 4 :(得分:0)
$("input[type=radio]").on('click', function () {
if ($(this).is(':checked')) {
$(this).prop("checked", false);
} else {
$(this).prop("checked", true);
}
});
答案 5 :(得分:0)
这是我的解决方案,该解决方案适用于触摸设备以及鼠标单击:
$('input[type=radio]').bind('touchstart mousedown', function() {
this.checked = !this.checked
}).bind('click touchend', function(e) {
e.preventDefault()
});
答案 6 :(得分:0)
我不知道为什么,但是用户 softvar 所选择的答案对我不起作用,因此经过大约两个小时的尝试,我根据softvar的答案提出了以下建议。将其放在此处以防其他人使用。您可以根据从数据库获得的“选定”值,将HTML中的“数据活动”指定为0或1。
$('input[name="user"]').on('click', function() {
if ($(this).data('active') == 0) {
$('input[name="user"]').data('active', 0);
$(this).data('active', 1);
} else {
$(this).data('active', 0);
$(this).prop('checked', false);
}
});
和
{{1}}