gpt4 book ai didi

php - jquery获取单选按钮的值

转载 作者:行者123 更新时间:2023-11-30 07:10:51 25 4
gpt4 key购买 nike

这是我的 html 标记

<span class="wpcf7-form-control-wrap radio-20">
<span class="wpcf7-radio radio-20" id="radio-20">
<span class="wpcf7-list-item">
<span class="wpcf7-list-item-label">Yes</span>
<input type="radio" value="Yes" name="radio-20">
</span>
<span class="wpcf7-list-item">
<span class="wpcf7-list-item-label">No</span>
<input type="radio" value="No" name="radio-20">
</span>
</span>
</span>

我怎么知道"is"单选按钮或“否”已被选中?

我试过:

    jQuery("span#radio-20 span input").val("Yes").click(function (){
alert('bang!');
});

但当我点击“否”时它也会提醒;

谁能帮帮我?

最佳答案

你可以这样做:

var val = $("#radio-20").find(":checked").val();
if (val === "Yes") {
// "Yes" button checked
} else {
// "No" button checked
}

如果你想在一个按钮被选中时调用一个函数,你可以这样做:

$("#radio-20 input").click(function () {
var val = $(this).val();
if (val === "Yes") {
// "Yes" button checked
} else {
// "No" button checked
}
});

(我还没有测试过这些,但应该可以)

关于php - jquery获取单选按钮的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6725671/

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