gpt4 book ai didi

jquery checkbox val() 总是返回

转载 作者:行者123 更新时间:2023-12-03 22:56:26 26 4
gpt4 key购买 nike

嗨,经过大量搜索后,我找到了一种检查复选框的方法。但我不知道问题是什么。它的 val() 总是返回 on。当我选中它和取消选中它时都会发生这种情况。我想它应该在未选中时返回 null 。帮助

$(document).ready(function(){
$('#ch').change(function(){
alert($(this).val());
});
});

和 html

<input type="checkbox"  id="ch"/> Check it out...

最佳答案

您有一组选项来检查您的复选框是否已选中或未选中,

alert($(this).is(":checked")); ////return true if checked

或者

alert(this.checked); //return true if checked

或者

<input type="checkbox" id="ch" checked/>
alert($(#ch).attr( "checked")); //return checked if checked

或者

alert($(this).prop( "checked")); //return true if checked

关于jquery checkbox val() 总是返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18808830/

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