我有以下html snippit;
<input name='first' class="foo" />
<input name='second' class="foo bar" />
<input name='third' class="foo" />
我想设置特定元素的值,但我无法选择正确的元素。这是我试过的问题:
jQuery('.bar').val('selected');
答案 0 :(得分:1)
似乎工作正常,确保你在dom上运行。
$(function() {
$('.bar').val('selected');
});