gpt4 book ai didi

javascript - jQuery 在选中时获取复选框值,在未选中时删除值

转载 作者:数据小太阳 更新时间:2023-10-29 05:41:21 26 4
gpt4 key购买 nike

jQuery 函数,如果选中则获取复选框值,如果未选中则删除值。

example here

<input type="checkbox" id="check" value="3" />hiiii

<div id="show"></div>

function displayVals(){
var check = $('#check:checked').val();
$("#show").html(check);
}
var qqqq = window.setInterval( function(){
displayVals()
},
10
);

最佳答案

您不需要间隔,每次有人更改复选框时,都会触发 change 事件,并且在事件处理程序中您可以更改 #show 的 HTML复选框是否被选中:

$('#check').on('change', function() {
var val = this.checked ? this.value : '';
$('#show').html(val);
});

FIDDLE

关于javascript - jQuery 在选中时获取复选框值,在未选中时删除值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17717608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com