帮助中心
联系我们
QQ:979601405
业务咨询 QQ
QQ:971511684
业务咨询 QQ
电话:010-65985913
当前位置:广告管家 > 广告位 > 广告位管理 > iframe广告位代码
iframe广告位代码

使用Iframe类型的广告位代码,广告位的加载是在iframe内进行的,因此它不影响当前网页的加载速度。

如何使iframe代码
1.在你的站点目录下新建一个iframe页面,例如命名为adm_iframe.html,页面的HTML代码如下:
<!DOCTYPE html>
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="margin:0">
<script type="text/javascript" src="http://js.adm.cnzz.net/js/abase.js"></script>
<script type="text/javascript">
(function() {
 var match = location.href.match(/(\?|&)id=([^&]+)(&|$)/);
 if (match) {
  var sid = parseInt(match[2], 10);
  if (sid) {
   CNZZ_SLOT_RENDER (match[2]);
  }
 }
})();
</script>
</body>
</html>
 2.在网页源文件广告位所在位置插入代码:
<iframe src="adm_iframe.html?id=9999" width="180" height="150" scrolling="no" frameborder="0" style="display:block;margin:0"></iframe>
其中,src为第一步中定义的html文件地址,id=广告位id,width和height分别为广告位的宽度和高度。

注:使用iframe代码,某些设置将失效:
1. 广告位受iframe的宽和高限制,因此系统中修改广告位尺寸,需要同时修改iframe的尺寸;
2. 广告位不支持漂浮与弹窗类型;
3. 广告不支持原窗口打开,如选择原窗口则在iframe中显示;
4. 不支持定向中来访域名和受访URL的投放。