大家好我想尝试在表单中的textarea上自动完成 我试图这样做没有PHP和SQL只有Jquery我试过这个:
var auto = $(function() {
$( "#recherche").autocomplete({
source: [
"Draggable",
"Droppable",
"Resizable",
"Selectable",
"Sortable"
],
minLength: 2,
})});
recherche是我输入的ID我是否有标签所以有人看到了什么问题? 感谢。
当我把你的例子放在一个单独的页面上时它可以工作但是在我的页面中它并没有告诉我错误但它不起作用你知道为什么吗?
答案 0 :(得分:0)
包含jQueryUI lib后,它工作正常。以下是jsfiddle的示例。
HTML:
<div class="ui-widget">
<label for="tags">Tags: </label>
<input id="recherche">
</div>
使用Javascript:
$(function() {
$( "#recherche").autocomplete({
source: [
"Draggable",
"Droppable",
"Resizable",
"Selectable",
"Sortable"
],
minLength: 2,
})
});