尝试获取选定的单选按钮值时,jQuery 抛出错误

发布于 2024-11-01 02:23:34 字数 828 浏览 1 评论 0原文

给定这个单选按钮集:

<div id="reviewScope">
  <input type="radio" name="loadMarkers" id="day" value="day"><label for="day">24 Hours</label>
  <input type="radio" name="loadMarkers" id="week" value="week"><label for="week">Week</label>
  <input type="radio" name="loadMarkers" id="month" value"month"><label for="month">Month</label>
</div>

然后使用 jQuery 1.5.2 调用,我试图获取答案后所选单选按钮的值 此处

$('#reviewScope input:radio').change(function() {
  period = $("input[name='loadMarkers']:checked").val();
  ....
}

Firebug 抛出错误:

$("input[name='loadMarkers']:checked").val 不是函数

什么是我做错了吗?

Given this radio button set:

<div id="reviewScope">
  <input type="radio" name="loadMarkers" id="day" value="day"><label for="day">24 Hours</label>
  <input type="radio" name="loadMarkers" id="week" value="week"><label for="week">Week</label>
  <input type="radio" name="loadMarkers" id="month" value"month"><label for="month">Month</label>
</div>

Then calling using jQuery 1.5.2, I'm trying to get the value of the selected radio button following the answer here:

$('#reviewScope input:radio').change(function() {
  period = $("input[name='loadMarkers']:checked").val();
  ....
}

Firebug is throwing the error:

$("input[name='loadMarkers']:checked").val is not a function

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

著墨染雨君画夕 2024-11-08 02:23:34

您是否缺少更改方法中的结束符“)”?

$('#reviewScope input:radio').change(function() {
  period = $("input[name='loadMarkers']:checked").val();
  ....
})

http://jsfiddle.net/67Q68/

Are you missing the closing ')' in the change method?

$('#reviewScope input:radio').change(function() {
  period = $("input[name='loadMarkers']:checked").val();
  ....
})

http://jsfiddle.net/67Q68/

檐上三寸雪 2024-11-08 02:23:34

您可以这样做:

$('#reviewScope input:radio').each(function() {
   $(this).click(function() {
       period = $("input[name='loadMarkers']:checked").val();
       ....
   });
});

检查右括号和方括号

You can do this:

$('#reviewScope input:radio').each(function() {
   $(this).click(function() {
       period = $("input[name='loadMarkers']:checked").val();
       ....
   });
});

Check for closing parenthesis and brackets

谜兔 2024-11-08 02:23:34
$("#day").click(function() {
 if ($(this).is(':checked')) {
     var period = "day";
    }
});

与其他单选按钮一一执行相同的操作

$("#day").click(function() {
 if ($(this).is(':checked')) {
     var period = "day";
    }
});

Do the same as for other radio buttons one by one

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文