我正在尝试将一些 Adsense 广告放入彩盒中,并已完成以下操作:
jQuery(document).bind('cbox_load', function(){
var $ads = jQuery('<div style="width:728px; height:90px; background:#fff; position:absolute; top:0; left:0;" id="adsenseColorbox"><script type="text/javascript"><!--google_ad_client = "ca-pub-5435441464221407";/* APRO_728x90_textonly */google_ad_slot = "0595008022";google_ad_width = 728;google_ad_height = 90;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>');
jQuery('#cboxContent').prepend($ads);
});
结果是:
<div id="cboxContent"...>
<div style="width:728px; height:90px; background:#fff; position:absolute; top:0; left:0;" id="adsenseColorbox"></div>
...
</div>
有人可以帮助让这个 Google Adsense 在 Colorbox 中工作吗?谢谢。