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
});
});
Ruby / html -
<%= text_field_tag :found, nil, :maxlength => 11, :size => 20%>
<input id="found" maxlength="11" name="found" size="20" type="text" />
答案 0 :(得分:4)
更改此行:
document.getElementById('#found').value="test"; #for test
为:
$('#found').val('test');