前两天在项目中遇到setTimeout()需要带参数问题;
原始办法setTimeout("Fun(+ element+)",1000);
不用字符串拼接。。。
更好的方法:setTimeout(function () { Fun(element) }, 1000);