在PC端的代码,转换到移动端后,就报错$ is not defined
不知道如何把$代码转换成移动端识别的代码?
var reportWidget = this;
setTimeout(function() {
$(reportWidget.element).css("text-shadow", "0px 0px 9px #25dcfc");
}, 1000);
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的代码
目前支持的js,App 端的 JS 接口-https://help.fanruan.com/finereport/doc-view-586.html
超出的话,没办法