我有一个texbox,在输入时有自动建议选项。我想限制用户仅从建议列表中选择选项。当前显示自动建议列表,但用户可以输入并选择自己的选项。请帮助。
jQuery().ready(function() {
jQuery("#ingr").autocomplete("<?php bloginfo('template_directory');?>/grocery/autocomplete.php", {
width: 260,
matchContains: true,
});
});