0

我有以下 html 片段;

<input name='first' class="foo" />
<input name='second' class="foo bar" />
<input name='third' class="foo" />

我想设置特定元素的值,但我无法选择正确的元素。这是我试过的:

jQuery('.bar').val('selected');
4

1 回答 1

1

似乎工作正常,请确保您已准备好在 dom 上运行。

$(function() {
    $('.bar').val('selected');
});
于 2012-12-11T13:47:45.737 回答