0

次のjQuery関数があります:

<script>
$(document).ready(function(){
$.getScript("http://my.cdn.ext/adsense.js");
});
</script>

adsense.js 内には、次のようなものがあります。

<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxxxxxxxxx";
google_ad_slot = "xxxxxxxx";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

このスクリプトは、firebug で次のエラーを表示します。

SyntaxError: missing ; before statement 
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js

jsファイルなのでタグを削除してみましたが無反応です。これを回避する方法は何ですか?

4

0 に答える 0