我的 php 代码就像
<div class="field">
<label style="float: none;">Recipients (by username):</label>
<?=form_error('to')?>
<input id="to" name="to" type="text" value="<?=$form_to?>" class="taglist" />
</div>
我已经包含jquery.tagsinput.css
我还添加了脚本
$('.taglist').tagsInput({
'height':'27px',
'width':'400px',
'defaultText':'add recepient',
});
但我在控制台中收到以下错误:
未捕获的类型错误:对象 [object Object] 没有方法“tagsInput”
任何想法..可能是什么问题?谢谢。