var reportWidget = this; setTimeout(function() { $(reportWidget.element).css(\"text-shadow\", \"0px 0px 9px #25dcfc\"); }, 1000); 这段代码,移动端无法使用,替换成这个就好了:
document.body.style.textShadow="rgb(37, 220, 252) 0px 0px 9px";
主要是之前那段代码里有$符号,是jquery的代码,需要换成js的代码,