我的HTML页面中包含以下代码:
<input id="user_profile_provide_veterinary_transportation_Yes" name="user_profile[provide_veterinary_transportation]" type="radio" value="Yes">
在对网站进行更改之前,我的名字就像name=provide_veterinary_transportation
,以下方式,我在jQuery中访问它:
$("input[type=radio][name=provide_veterinary_transportation]");
但现在,由于它已更改为name=user_profile[provide_veterinary_transportation]
,我无法找到使用jQuery访问此方法的方法。
答案 0 :(得分:4)
试试这个:
$('input[type=radio][name="user_profile[provide_veterinary_transportation]"]');