3

jquery オートコンプリート選択イベント後の単純なテキスト フィールドの変更。データを分割して別のテキスト フィールドに表示したい。私はこれを試しています。これは値をまったく変更しません。ここで何を変更する必要がありますか?

$(function() {
  $("#term").autocomplete({
    source: function (request, response) {
      $.post("/users/search", request, response);
    },
    minLength: 2,
    select: function(event, ui){
        $('#div2').html(ui.item.value); #doesn't populate with new text. 
        document.getElementById('#found').value="test"; #for test
        } #doesn't populate with new text. 
          #I want selected data to go here in the 'found' element id
  });
});

ルビー/html -

<%= text_field_tag :found, nil, :maxlength => 11, :size => 20%>
<input id="found" maxlength="11" name="found" size="20" type="text" />
4

1 に答える 1

4

この行を変更します。

document.getElementById('#found').value="test"; #for test

に:

$('#found').val('test');
于 2012-05-01T23:06:33.047 に答える