我正在尝试this
我导入了js
和css
文件,我确信它们已加载到页面中。
在我正在使用的页面中:
<script>
$('#findprofiles').tagsInput({
width: 'auto',
autocomplete_url:'<?=base_url()?>loadajax/find_people/brandon'
});
</script>
反对我的输入
<input type="text" id="findprofiles" />
但我收到了错误
Uncaught TypeError: Object [object Object] has no method 'tagsInput' (anonymous function)
答案 0 :(得分:0)
你看到了这个错误,因为j tagsInput
没有像你期望的那样在jQuery对象中扩展。您的Web浏览器未正确加载tagsInput库(检查控制台中的HTTP错误或JavaScript错误),或者您正在使用的jQuery版本在某种程度上不兼容(可能还表示错误)控制台。)