我得到了
我的控制台上的这个javascipt文件djtokeniput.js出现未捕获的TypeError:field.tokenInput不是函数
错误。这是文件中的代码 -
jQuery(function() {
jQuery("input.tokeninput").each(function() {
var field = jQuery(this);
field.tokenInput(
field.data("search-url"),
field.data("settings")
);
});
});
正在使用此文件获取作为插件的tokenInput函数。 jquery.tokeninput.js- 这是tokeninput代码段 -
// Expose the .tokenInput function to jQuery as a plugin
$.fn.tokenInput = function (method) {
// Method calling and initialization logic
if(methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else {
return methods.init.apply(this, arguments);
}
};
这里有什么问题?