私はjqueryオートコンプリートコンボボックスを使用していますが、すべてうまく機能しています。
http://jqueryui.com/demos/autocomplete/#comboboxにアクセスします。
問題は、このコンボボックスを作成して、ボックスをクリックすると内部のテキストが選択されるようにして、ユーザーが古いテキストをクリアせずに次の検索を開始できるようにすることです。
$(document).readyでテストしようとしたソリューション...
//clear each option if its selected
$('#<%=combobox.ClientID %> option').each(function () {
$(this).removeAttr('selected')
});
//set the first option as selected
$('#<%=combobox.ClientID %> option:first').attr('selected', 'selected');
//set the text of the input field to the text of the first option
$('#<%=combobox.ClientID %> ').parent().children('input.ui-autocomplete-input').val(' ');
ディントワーク..。
よろしくお願いします。