java – 如何将Google Adsense放在GWT中

前端之家收集整理的这篇文章主要介绍了java – 如何将Google Adsense放在GWT中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有人知道如何将Google adsense广告放在GWT网络应用程序中?

解决方法

您可以将Adsense中的 JavaScript代码放在GWT开始的单个HTML页面中.这样广告不会显示在与GTW相同的区域,而是在GWT代码之上/之下.对于可能是广告

这个例子在应用程序之上放置一个空白:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <Meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>www.javaoracleblog.com</title>
    <script type="text/javascript" language="javascript" src="com.javaoracleblog.aggregator.nocache.js"></script>
  </head>
  <body>
<script type="text/javascript"..
ADsense code here 
</script>
    <!-- OPTIONAL: include this if you want history support -->
    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
  </body>
</html>

为了向Google WT表明Google adsense的网站可以信任,您需要向-whitelist命令行参数添加正则表达式匹配的URL.

请注意,这可能无法解决上述“为什么我倾倒GWT”文章中所述的问题.

原文链接:https://www.f2er.com/java/126932.html

猜你在找的Java相关文章