我正在尝试让 Google AdSense 广告显示在我的移动网站上。我正在使用 Django 来提供我的网页,我正在使用 JQuery Mobile 来显示和格式化内容。我在静态 html 页面上遵循了这些博客说明,并且广告显示良好。当我在基本模板中使用完全相同的代码时,移动广告不会显示。当我比较 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>