我想在页面加载后执行广告脚本。我知道我必须使用这样的东西:
$(window).bind("load", function() {
$.getScript('http://anetwork.ir/showad/?adwidth=468&adheight=60&aduser=1341223032', function() {
// callback function
alert('external script loaded!');
});
});
但它不工作,虽然警报加载。也没有问题
$(window).bind("load", function()
问题必须来自 $.getScript 。我还必须补充一点,外部脚本输出如下内容:
document.write('<iframe scrolling="no" width="468" height="60" frameborder="0" src="http://anetwork.ir/showad/c.php?adwidth=468&adheight=60&aduser=1341223032">
');