gpt4 book ai didi

jquery - 如何获取 radio 组中所选 radio 的文本

转载 作者:行者123 更新时间:2023-12-03 22:42:51 25 4
gpt4 key购买 nike

正如标题所说例如:

<input id="User_Type_0" type="radio" name="User_Type" value="1" checked="checked" />
<label for="User_Type_0">User1</label>
<input id="User_Type_1" type="radio" name="User_Type" value="2" />
<label for="User_Type_1">User2</label>

如何获取文本:用户 1

最佳答案

$('input:radio:checked').siblings('label:first').html()

<小时/>

更新:

正如 Victor 在评论部分指出的那样,前一个选择器将始终选择第一个标签。 next功能应该可以工作:

$('input:radio:checked').next('label:first').html()

关于jquery - 如何获取 radio 组中所选 radio 的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2132407/

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