我正在使用spin.js
库来加载微调器。Chrome 抛出此错误
[未捕获的 ReferenceError:未定义微调器]。
微调器在所有其他浏览器中运行良好!
以下是相关代码:
//Jquery Spinner
$.fn.spin = function(opts) {
this.each(function() {
var $this = $(this), data = $this.data();
if (data.spinner) {
data.spinner.stop();
delete data.spinner;
}
if (opts !== false) {
data.spinner = new Spinner($.extend({
color: $this.css('color')}, opts)).spin(this);
}
});
return this;
};
有什么解决办法吗?