我们都想使我们的网站更快,google在这里显示了一些示例:http://code.google.com/speed/articles/html5-performance.html

我们使用OpenX来转换广告,因此,假设支持浏览器(FF3.6 +),我认为我们可以从以下位置修改OpenX广告代码:

<script type='text/javascript'> ... ad codes </script>

进入
<script type='text/javascript' async> ... ad codes </script>

这样行吗?有没有更好的方法来异步加载脚本?

最佳答案

不幸的是,OpenX使用document.write来完成其大部分工作。这意味着它将在脚本实际运行时尝试在流中的当前任何位置进行写入。我尝试将OpenX javascript代码段本身更改为不使用document.write,但发现来自OpenX的响应通常也包含document.writes。

10-08 00:53