gpt4 book ai didi

jquery - 使用 jQuery 如何获取复选框的值?

转载 作者:行者123 更新时间:2023-12-01 00:07:06 26 4
gpt4 key购买 nike

Possible Duplicate:
How to retrieve checkboxes values in jQuery

我有以下表格:

<form action="index.php">
<div class="answer"><input type="radio" name="vote_answers" value="3615736&1047558" class="vote_answers"> 1</div>

<div class="answer"><input type="radio" name="vote_answers" value="3615736&1121626" class="vote_answers"> 2</div>

<div class="answer"><input type="radio" name="vote_answers" value="3615736&9910782" class="vote_answers"> 3</div>

<input type="submit" name="submit" id="button_submit_vote" value="submit">
</form>

当我点击提交时,我需要获取选中复选框的值

这是我的代码:

$('#button_submit_vote').on('click',function() {
if($('.vote_answers').is(':checked')){var id=$(this).val();}
alert(id);
});

我得到的不是复选框值,而是“提交”值。

最佳答案

这是因为 this 引用了 button_submit_vote 元素,您可以使用 :checked 选择器:

var id = $('.vote_answers:checked').val();

关于jquery - 使用 jQuery 如何获取复选框的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14551025/

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