js通过html的id获取html页面的变量

$('#wait').show();
$('#result').hide();

html编码

 \u 开头和&#x是一样的,都是16进制的unicode转义字符
&#是10进制的unicode转义字符
https://blog.csdn.net/xiaochengyihe/article/details/80910913


js自动滚动

var timer=setInterval("scrollBy(0, 80000);",1000);//设置
clearInterval(timer);//取消




addEventListener与postMessage配合使用