作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要有 2 个复选框作为单选按钮,但我无法使用单选按钮,因为我想让取消选中可用
<script type="text/javascript">
$(document).ready(function() {
$(".gps-garmin").click(function() {
selectedBox = this.id;
$(".gps-garmin").each(function() {
if ( this.id == selectedBox )
{
this.checked = true;
}
else
{
this.checked = false;
};
});
});
});
<td><input type="checkbox" id="garmin" value="garmin" class="gps-garmin"></td>
<td><input type="checkbox" id="gps" value="gps" class="gps-garmin"></td>
实际上我的复选框的工作方式与单选按钮完全相同,我在这里找到了这段代码,但我需要取消选中它
最佳答案
试试这个:
$(".gps-garmin").click(function() {
var check = $(this).prop('checked');
$(".gps-garmin").prop('checked',false);
$(this).prop('checked', (check) ? true : false);
});
关于javascript - 使复选框像单选按钮一样可以取消选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42205772/
我是一名优秀的程序员,十分优秀!