<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
更新:
正如Victor在评论部分所指出的那样,前一个选择器将始终选择第一个标签. next功能应该工作:
$('input:radio:checked').next('label:first').html()