谷歌Adsense广告没有出现在django服务的Jquery Mobile中

时间:2013-01-19 23:02:37

标签: django jquery-mobile adsense

我正在尝试在我的移动网站上展示Google AdSense广告。我正在使用Django来提供我的网页,我正在使用JQuery Mobile来显示和格式化内容。我在静态html页面上关注these blog instructions ,广告显示正常。当我在基本模板中使用完全相同代码时,移动广告不会显示。当我比较HTML源代码时,它们看起来完全相同,并且所有链接的工作方式完全相同。有没有Django注入标题,以防止广告显示? HTML源代码如下:

    <html>
<head>
    <title>Test AdSense</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />    
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css"/>
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>    
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>

    <script type="text/javascript"><!--
        google_ad_client = "ca-pub-XXXXXXXXXXXXXXXXXX";
        /* LTC MobileHeader */
        google_ad_slot = "XXXXXXXXXXXX";
        google_ad_width = 320;
        google_ad_height = 50;
    //-->
    </script>
</head>
<body>
    <div id="Div1" data-role="page" data-ajax="false">
        <header data-role="header" data-position="fixed">
            <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
            <h1>Index Page</h1>
        </header>
        <section data-role="content">
            <a href="page2.html" data-role="button" data-ajax="false">to Page 2</a>
        </section>
        <footer data-role="footer" data-position="fixed"></footer>      
    </div>  
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我决定将代码上传到我在Ubuntu上运行的登台系统系统,广告显示正常。我的开发环境正在进行,它在Windows上运行,阻止了对Google的调用。