当前位置:Gxlcms > PHP教程 > javascript-百度广告如何触发执行?

javascript-百度广告如何触发执行?

时间:2021-07-01 10:21:17 帮助过:4人阅读

我想根据滚动条滚动来加载百度广告,
但是百度的广告在文档载入完成后调用就会出问题。
有没有人做过类似的,有没有解决方法?
正常的百度广告代码:

(function() {
    var s = "_" + Math.random().toString(36).slice(2);
    document.write('');
    (window.slotbydup=window.slotbydup || []).push({
        id: '1232323',
        container: s,
        size: '728,90',
        display: 'inlay-fix'
    });
})();

然而我想

$(function(){
        function test()
        {
           var s = "_" + Math.random().toString(36).slice(2);
            document.write('');
            (window.slotbydup=window.slotbydup || []).push({
                id: '1232323',
                container: s,
                size: '728,90',
                display: 'inlay-fix'
            });
        }
        test();//某个操作会调用test
});

这样子调用就行,有没有办法解决的

回复内容:

我想根据滚动条滚动来加载百度广告,
但是百度的广告在文档载入完成后调用就会出问题。
有没有人做过类似的,有没有解决方法?
正常的百度广告代码:

(function() {
    var s = "_" + Math.random().toString(36).slice(2);
    document.write('');
    (window.slotbydup=window.slotbydup || []).push({
        id: '1232323',
        container: s,
        size: '728,90',
        display: 'inlay-fix'
    });
})();

然而我想

$(function(){
        function test()
        {
           var s = "_" + Math.random().toString(36).slice(2);
            document.write('');
            (window.slotbydup=window.slotbydup || []).push({
                id: '1232323',
                container: s,
                size: '728,90',
                display: 'inlay-fix'
            });
        }
        test();//某个操作会调用test
});

这样子调用就行,有没有办法解决的

人气教程排行