我正在尝试延迟加载一些广告服务器代码...
在页面上,我现在有这个:
<div class="ad">
<span>pos_1</span>
</div>
然后我查看了应该在页面上显示的所有广告,调用他们的javascript包含文件,它给了我这个可爱的混乱:
function do_ad(pos){
switch(pos){
case 'pos_1':
document.write('first ad text');
document.write('first ad more text');
//and so on for many many lines
break;
case 'pos_2':
document.write('second ad text');
document.write('second ad more text');
//and so on for many many lines
break;
}
}
然后我想用document.write
广告调用的结果替换范围。
有没有办法让它返回本应写入页面的字符串?
答案 0 :(得分:6)
我不明白为什么你不能覆盖document.write
函数:
document.old_write = document.write;
document.write = function (str) {
// lalala
};
答案 1 :(得分:1)
document.write = function(str) {
window.buf += str;
}
答案 2 :(得分:0)
必须在某处调用do_ad(pos)函数。为什么不显示广告的位置?
<div class="ad">
<script>do_ad("pos_1");</script>
</div>