gpt4 book ai didi

javascript - 如何使用 jQuery 处理单选按钮列表选项更改

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:51:22 25 4
gpt4 key购买 nike

我的页面上有一个 RadioButtonList 控件,它有多个选项。我想处理其选项的更改,并根据所选选项的值进行工作。

这不起作用:

 $(document).ready(function () {
$('#RadioButtonList1').change(function () {
if ($(this).is(':checked')) {
alert("yes");
}
});
});

我该如何处理?

谢谢

最佳答案

你只需要绑定(bind)输入本身,而不是他们的组:

$(document).ready(function () {
$('#RadioButtonList1 input').change(function () {
// The one that fires the event is always the
// checked one; you don't need to test for this
alert($(this).val());
});
});

关于javascript - 如何使用 jQuery 处理单选按钮列表选项更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8413828/

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