嘿,伙计们, 我已经创建了一个完全基于AJAX的Web应用程序,但是Adsense似乎无法为AJAX提供的内容生成任何相关广告。
为了展示相关广告,我创建了一个I-Frame,它会以html格式显示包含AJAX获取内容的硬拷贝的缓存文件,并在其中包含adsense.js脚本。 / p>
以下是一个例子:
adsenseexample.html
<html>
<head>
<title>User Cache</title>
</head>
<body>
<div style="height:200px;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxxxxxxx";
google_ad_slot = "xxxxxxxxxxxxx";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
(This is where the cached content is. It's not visible to the user but
a complete duplicate of what they are viewing. It's in
plain text with no pictures for faster loading).
</head>
</body>
哪个加载到iframe中:
<iframe src="adsenseexample.html"> </iframe>
任何人都知道我为什么还没有收到任何相关的广告。这种方法是否有缺陷?
感谢。
答案 0 :(得分:2)
答案 1 :(得分:0)
嗯,您是否尝试将params传递给您的iframe src,例如来自推荐http请求的关键字,描述?然后,您需要将关键字参数和描述添加到元标记。
答案 2 :(得分:-1)