我在本网站上使用typed.js作为文字动画:https://howareyoudoing.today/
它适用于Chrome和Firefox。但是在IE上,它不想初始化并且它阻止了我的脚本。任何解决方案?
答案 0 :(得分:0)
您可能使用了stringsElement: #yourdiv
,这似乎会导致问题。
尝试使用以下方法获取字符串:
var myitems = [];
$('#yourdiv p').each(function (i, e) {
myitems.push($(e).text());
});
然后使用:
"strings: items"
代替。 希望这有帮助