我应该使用自动功能删除单词“ St”,“ Pair”,“ Bri”的列表。
var igonoredWords = [
"st ",
"Pair",
"Bri",
"Elem",
"stu"
];
$(".myInput").keyup(function() {
var text = $(this).val();
if (text.indexOf(igonoredWords) == -1 && text.indexOf(igonoredWords) == -1) {
$(".myInput").autocomplete({
source: data.text
});
} else {
$(".myInput").autocomplete("destroy");
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input class='myInput' type='text'>
请对此提供帮助。