jquery默认选中框选择器

时间:2014-03-17 08:02:11

标签: jquery

如何定位或选择我在js小提琴上编写代码的默认复选框 选中的默认值在加载时应用边框

<input id="Male" type="radio" checked="checked"/>M<input id="Female" type="radio" />F</td>
    </tr>
 <input id="Checkbox1" type="checkbox" checked="checked"/><label for="Checkbox1">Widgets</label><br />

http://jsfiddle.net/Fx7Cm/

3 个答案:

答案 0 :(得分:0)

我不完全理解您的问题,但要获取默认选中的复选框,您可以use the attribute selector [checked]

$('input[type=checkbox][checked]')

答案 1 :(得分:0)

你在jsfiddle中做了$("form :checked"),因为你的演示中没有表单元素,选择器"form :checked"什么都没有。

$(":checked")将在您的演示中获取已选中的元素。

然后将css属性border应用于输入元素,该元素无效。 您可以在输入后申请标签。

<强> See the working demo.

答案 2 :(得分:0)

使用:选中的选择器

$('input:checked')

demo