我在文本输入上使用jQuery Autocomplete小部件来替换选择下拉列表。当用户点击文本框时,会打开建议下拉列表。我的解决方案在FireFox中工作得很好但在Internet Explorer 8中有点故障。在Internet Explorer中,当从建议下拉列表中选择项目时,建议列表消失,然后重新显示一小段时间。我不知道如何防止这种情况。
我正在使用: (jquery)jquery-1.6.4.min.js (jquery UI)jquery-ui-1.8.16.custom.min.js
以下代码
<input type="text" style="width:200px;" id="txtPosTypeS" value="" />
var RegTempList = [
{ label: "Auxiliary Monthly Trust", value: 1000},
{ label: "Auxiliary Monthly Operating", value: 1001},
{ label: "Auxiliary Hourly Trust", value: 1002},
{ label: "Auxiliary Hourly Operating", value: 1003}]
$().ready(function() {
$('#txtPosTypeS').autocomplete({
minLength: 0,
source: RegTempList,
delay: 0,
focus: function( event, ui ) {
$(this).val( ui.item.label );
return false;
},
select: function( event, ui ) {
$(this).blur();
$(this).val( ui.item.label );
return false;
},
change: function (event, ui) {
//if the value of the textbox does not match a suggestion, clear its value
if ($(".ui-autocomplete li:textEquals('" + $(this).val() + "')").size() == 0) {
$(this).val('');
$('#hidPositionType').val('');
}
},
close: function(event, ui) {
$(this).blur();
return false;
}
})
.focus(function(){
$(this).autocomplete('search','');
})
.data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + item.label + "</a>" )
.appendTo( ul );
}; });
答案 0 :(得分:1)
使用IE8和jsfiddle,更改功能中的textEquals上存在脚本错误。删除更改功能,解决了问题。
把它扔进jsFiddle,这是链接。
此外,更新了文本框宽度,使文本没有跳转。