我目前有以下内容:
<script src="http://www.google.com/jsapi?key=..." type="text/javascript"></script>
<script>
//<![CDATA[
google.load('jquery', '1.6');
//]]>
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '...']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
似乎有两种非常不同的加载js的方法。有什么方法可以将这些结合起来,以便负载最有效吗?
答案 0 :(得分:0)
对于此次通话,您需要先加载google jsapi。
google.load('jquery', '1.6');
如果您只想将jquery与其他脚本文件调用异步并行加载,请使用以下命令:
var jq = document.createElement(“script”);
jq.src = “/path/to/jquery.js”; jq.type=”text/javascript”; jq.async=true;
document.getElementsByTagName(“head”)[0].appendChild(jq);