与django

时间:2015-07-24 00:32:25

标签: javascript jquery jquery-tokeninput

我得到了

  

未捕获的TypeError:field.tokenInput不是函数

我的控制台上的这个javascipt文件djtokeniput.js出现

错误。这是文件中的代码 -

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);
}
};

这里有什么问题?

0 个答案:

没有答案