获取jQuery mobile中选项按钮的值

前端之家收集整理的这篇文章主要介绍了获取jQuery mobile中选项按钮的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有以下jQuery mobile html;
<fieldset data-role="controlgroup" data-type="horizontal" name="Smoker" id="Smoker">
  <input name="radio3" id="radio3" value="Yes" type="radio" />
  <label for="radio3">Yes</label>
  <input name="radiobuttons1" id="radio4" value="No" type="radio" />
  <label for="radio4">No</label>
</fieldset>

我以为我可以在jQuery中做到这一点;

$("#Smoker").val()

然而,这没有结果.事实上,我是否需要查询输入以查看哪一个已被检查,或者是否有一个很好的jQuery Mobile方法来执行此操作?

解决方法

尝试
$("#Smoker :radio:checked").val();
原文链接:https://www.f2er.com/jquery/179047.html

猜你在找的jQuery相关文章