javascript
写代码的小哥哥
这个作者很懒,什么都没留下…
展开
-
json乱码
1.echo json_encode( '中文', JSON_UNESCAPED_UNICODE ); // "中文" 5.4版本以上2.$two=json_encode($two); echo urldecode($two);3.ajax返回的responseText转换成json格式var json=eval("("+responseText+")");...原创 2018-02-14 12:52:02 · 392 阅读 · 0 评论 -
动画循环操作
requestAnimationFrame(() => this.run()); 比以下两个效率高: setTimeout(() => this.run(),100); setInterval(() => this.run(),100);原创 2018-02-17 23:19:07 · 293 阅读 · 0 评论