网站想改版,其中有一种广告的问题,以前每投放一个广告我都要把全站的文章都要更新一遍,这样既不便又不好!把网站以前推荐的一些文章都改成现在推荐的几个了!而且还浪费了我的时间。所以想使用Iframe来实现,但是直接使用iframe又不符合标准,那么该如何使用才能符合W3C的标准呢?
直接使用"IFRAME"不符合"W3C网页标准"
用JS来实现iframe 的标准化.
一、建立一个JS文件,代码如下:
function ifr(url,w,h){document.write('');}
保存成"ifr.js"
二、在网页中插入代码
<script></script>
三、在需要使用iframe的地方插入代码
<script>ifr('http://www.cwdn.org/','778','120');</script>
函数ifr()使用说明:ifr('这里写地址','这里写宽度','这里写长度',)
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn