我有以下 html 片段;
<input name='first' class="foo" />
<input name='second' class="foo bar" />
<input name='third' class="foo" />
我想设置特定元素的值,但我无法选择正确的元素。这是我试过的:
jQuery('.bar').val('selected');
我有以下 html 片段;
<input name='first' class="foo" />
<input name='second' class="foo bar" />
<input name='third' class="foo" />
我想设置特定元素的值,但我无法选择正确的元素。这是我试过的:
jQuery('.bar').val('selected');