我决定更新我所有的 jquery 以使用 jquery 1.9.1,但我可以找出这个脚本停止工作的原因。在所有其他 jquery 版本中工作正常。
// Typewriter function
$.fn.Typewriter = function Typewriter(opts) {
var $this = this,
defaults = {
animDelay: 50
},
settings = $.extend(defaults, opts);
var objDiv = document.getElementById(settings.div);
$.each(settings.text, function (i, letter) {
setTimeout(function () {
$this.html($this.html() + (letter != '\n' ? letter : '<br />'));
objDiv.scrollTop = objDiv.scrollHeight;
}, settings.animDelay * i);
});
};
// Call with
// $('#divID').Typewriter({animDelay: 10,text: 'text to animate', div: 'divID'});
$('#outputDiv').Typewriter({
animDelay: 10,
text: 'Why does this not work in jquery 1.9.1? :( ',
div: 'outputDiv'
});
Js小提琴包括在下面
编辑:
使用 chrome 开发工具,我在控制台读取错误:
Uncaught TypeError: Cannot use 'in' operator to search '42' in 为什么这在 jquery 1.9.1 中不起作用?:(