如何在jQuery中访问名称中带有数组的单选按钮?

时间:2014-10-29 06:50:56

标签: javascript jquery html input radio-button

我的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访问此方法的方法。

1 个答案:

答案 0 :(得分:4)

试试这个:

$('input[type=radio][name="user_profile[provide_veterinary_transportation]"]');