我正在为我的网站使用标记处理程序插件。我把支持性的js放在我的js下面,我正在初始化方法。每个js都在页脚中。我不知道为什么会收到这个错误。
这是js:
$("#array_tag_handler").tagHandler({
assignedTags: [ 'C', 'Perl', 'PHP' ],
availableTags: [ 'C', 'C++', 'C#', 'Java', 'Perl', 'PHP', 'Python' ],
autocomplete: true
});
我把它放在document.ready
。
答案 0 :(得分:-2)
您需要将JQUERY库包含在项目中,否则它将无效。
$(document).ready(function(){
// ...everything in here is jquery include jquery library..
});
下载jquery并添加到项目中
<html>
<head>
<script scr="jquery.min.js"></script>
// to your directory tree
</head>