我需要什么
码
$('.autocomplete_ind').autocomplete({
lookup: industrys,
onSelect: function(suggestion)
{
console.log(suggestion);
var thehtml = '<strong>industry name:</strong> ' + suggestion.name + ' selected<br> <strong>'+ suggestion.id+'</strong>';
$('#outputcontent').append(thehtml);
$(this ).attr( "value", suggestion.value );
}
html元素
<input type="text" autocomplete="off" onChange="make_url();"
id="industry_name" class="biginput autocomplete_ind" name="allindustry" value="">