0

我的 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”

任何想法..可能是什么问题?谢谢。

4

1 回答 1

0

看起来你忘了添加 tagsinput js 脚本..(显然是 jquery.js)

在这里添加这个<head>标签

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<script src="http://xoxco.com/projects/code/tagsinput/jquery.tagsinput.js"></script>

或者

如果您已经下载了该文件,那么.. 为您的 taginputs js 文件提供正确的路径..

<script src="path/to/your/file/jquery.tagsinput.js"></script>
于 2013-03-15T12:23:54.510 回答