IE7和IE8的CSS样式八大差异

你对IE7和IE8的CSS样式八大差异是否了解,这里和大家分享一下,IE7所设计的网页,在IE8上的呈现会有所出入,所幸拜IE7相容检视功能所赐,目前因使用IE8而导致版面错误的网站并不多。

当雄ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!

IE7和IE8的CSS样式八大差异

InternetExplorer8预设是以CSS2.1为标准,并修正了许多InternetExplorer7的CSSBug,这意味着有一部份以往依据IE7所设计的网页,在IE8上的呈现会有所出入,所幸拜IE7相容检视功能所赐,目前因使用IE8而导致版面错误的网站并不多。但一值依赖IE7相容检视功能并非长久之计,尽早将网站修改为IE8相容才是长久之计,因为毕竟CSS是持续更新的,现在不改,日后大修的机会就更大。不幸的是,Microsoft官方并未提供关于IE7及IE8的CSS差异说明文件,顶多只是告诉我们IE8目前更趋近于CSS2.1而非CSS2.0,因此笔者在造访许多网站后,规类出8个最常见的差异供读者们参考。

1、起始座標位置

先天上,IE7与IE8在预设网页版面的起始位置就不同,以下面的代码来说,在IE7及IE8上启始的位置就有差异。

 
 
 
  1.  
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  3.  
  4.  
  5. title> </li> <li> head> </li> <li><body> </li> <li><divstyledivstyle="height:100px;width:200px;border:solid1pxblack"> </li> <li><div> </li> <li><ahrefahref="http://www.hinet.net">Hinet a> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>不过由于是整个偏移,对网页的影响相当小。</p><p><strong>2、DIV中的P</strong></p><p>下面的执行结果呈现了IE7及IE8在处理DIV中的P之差异性。<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><divstyledivstyle="height:100px;width:200px;border:solid1pxblack"> </li> <li><div> </li> <li><p>TESTFont p> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>很明显的,IE8中对于DIV中的P预设位置与IE7不同,IE7是将margin-top预设为0px,排在最上方,,IE8却未预设margin-top,<br />解决方法是将margin-top加上。<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><divstyledivstyle="height:100px;width:200px;border:solid1pxblack"> </li> <li><div> </li> <li><pstylepstyle="margin-top:0px">TESTFont p> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li>(IE8Withmargin-top)  </li> <li> </li> </ol></pre><p> #p#<strong>3、负数margin</strong></p><p>许多网页设计师常常以负数的margin来定位HTML元素的位置,目的是让该元素与图形对齐,IE7及IE8对于负数的解释有蛮大的差异性。<br />程式4<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><divstyledivstyle="height:100px;width:200px;border:solid1pxblack"> </li> <li><divstyledivstyle="background-color:Red;margin:-5px6px7px8px"> </li> <li><ahrefahref="http://www.hinet.net">Hinet a> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>由比较图可看出,IE7遭遇负数时,并不会移出DIV的范围,而IE8会,在笔者撰写本文之时,大多数的不相容IE8网页错误都源自于此。</p><p><strong>4、TableWithBorderStyle</strong></p><p>元素的Layout在每个浏览器上都会有些许差异的表现,下面的代码是一个在IE7及IE8上呈现相异的范例。Table<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><tablestyletablestyle="border:double7pxgreen"> </li> <li><tr> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li> tr> </li> <li><tr> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li> tr> </li> <li><tr> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li><tdstyletdstyle="border:double1pxgreen">a td> </li> <li> tr> </li> <li> table> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>很明显的,IE7的border宽度计算比IE8高,不过由于这是整体偏移,加上我们很少会设定太大的border宽度,影响程度几乎等于0。#p#</p><p><strong>5、bottom、top</strong></p><p>当使用绝对位置时,IE7与IE8会产生些许的偏移,这些偏移是整体性的,所以影响很小<br />例子:<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><divstyledivstyle="height:100px;width:200px;border:solid1pxblack"> </li> <li><divstyledivstyle="background-color:Red;bottom:5px;top:5px;position:absolute;height:40px"> </li> <li>TEST  </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>很难看出来吧,因为偏移很小,不过确实是偏移了。</p><p><strong>6、li+float</strong></p><p>UL、LI加上float,在IE7于IE8有相当大的差异,见:<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><div> </li> <li><div> </li> <li><ul> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST1 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST2 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST3 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST4 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST5 li> </li> <li> ul> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>在IE7上,LI的项目符号被取消了,而在IE8上则正常显示,但却因为是float,所以后面的项目符号盖到前一项目了。修改为程式8的模样后<br />,两者就趋近相同了。</p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><div> </li> <li><div> </li> <li><ulstyleulstyle="list-style-type:none"> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST1 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST2 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST3 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST4 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST5 li> </li> <li> ul> </li> <li> div> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>在尝试寻找CSS相异点时,许多网站都有这类问题,因为我们常用这种手法来处理页签类的显示。<br />PS:list-style-type在IE7时,只要li是float,就会被完全忽略。#p#</p><p><strong>7、div+heightwithulandimage</strong></p><p>当DIV设定了固定大小,而内容超出所定大小,然后后方跟着IMG时,在IE7及IE8会有相当大的差异。<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><div> </li> <li><divstyledivstyle="width:300px;height:22px;margin-top:5px"> </li> <li><ulstyleulstyle="list-style-type:none"> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST1 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST2 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST3 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST4 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST5 li> </li> <li><listylelistyle="cursor:hand;float:left;"> </li> <li>TEST6 li> </li> <li> ul> </li> <li> div> </li> <li><ahrefahref="http://www.hinet.net>"> </li> <li><imgsrcimgsrc="21565.jpg"width="300px"height="200px"/> </li> <li> a> </li> <li> div> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>很明显的,IE7会尊重DIV所制定的大小来安排后面的IMG位置,所以在图14上看不出有何问题,但是在IE8里,当内容超出制定大小时,<br />IMG位置会顺移开,所以就造成了此问题。在实务上,这算是相当常见的相容性错误。<br />解决方法很简单,将要被盖住的那个LI移掉就好了,这本来就是错误的设计。</p><p><strong>8、p的子控件对齐</strong></p><p>有些网页设计师习惯使用P加上子控件来描绘单行输入+按纽的样式,这些网页在IE8上会有或许的差异,如果里面使用的IMG太多,<br />差异就会大到很难忽视。<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> head> </li> <li><body> </li> <li><p> </li> <li><inputtypeinputtype="text"/> </li> <li><imgsrcimgsrc="add2.png"height="16px"width="16px"/> </li> <li> p> </li> <li> body> </li> <li> html> </li> <li> </li> </ol></pre><p>很明显,IE7会对IMG置中于P,但IE8不会。这类问题很难解决,需要透过CSS判断IE版本来提供不同的CSS,让两者趋近相同。<br /></p><pre> <ol> <li></li> <li> </li> <li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> </li> <li><htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> </li> <li><head> </li> <li><title> title> </li> <li> 浅析<em>CSS</em>在<em>IE</em>6、<em>IE7</em>、<em>IE8</em>中<em>的</em>兼容<em>差异</em> 本文向大家介绍一下CSS在IE6、IE7、IE8中的兼容差异解析,关于浏览器的最离奇的统计结果之一就是InternetExplorer版本IE6,IE7和IE8共存。 <p>2010-08-18 10:37:16</p> IE6 IE7 IE8</li> </ol></pre> <p> 网站题目:<a href="http://www.gawzjz.com/qtweb/news41/190741.html">IE7和IE8的CSS样式八大差异</a> <br> 当前链接:<a href="http://www.gawzjz.com/qtweb/news41/190741.html">http://www.gawzjz.com/qtweb/news41/190741.html</a> </p> <p> 网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等 </p> <p class="adpic"> <a href="https://www.cdcxhl.com/service/ad.html" target="_blank" class="ad">广告</a> <a href="" target="_blank" class="adimg"><img src=""></a> </p> <p class="copy"> 声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: <a href="https://www.cdcxhl.com/" target="_blank">创新互联</a> </p> </div> <div class="newsmorelb"> <p>猜你还喜欢下面的内容</p> <ul> <li> <a href="/qtweb/news40/190740.html">号1433SQLServer优化之调整端口号1433(sqlserver端口)</a> </li><li> <a href="/qtweb/news39/190739.html">20m宽带峰值?20m云服务器</a> </li><li> <a href="/qtweb/news38/190738.html">鲸打卡作业怎么复制</a> </li><li> <a href="/qtweb/news37/190737.html">ASP实现带数据库的文件上传(asp上传带数据库)</a> </li><li> <a href="/qtweb/news36/190736.html">windows7官方安装盘制作工具?windows安装软件制作工具</a> </li><li> <a href="/qtweb/news35/190735.html">主机屋成功入选收录,如何从中获取更多信息?(主机屋收录)</a> </li><li> <a href="/qtweb/news34/190734.html">下载驱动怎么安装</a> </li><li> <a href="/qtweb/news33/190733.html">业务服务自动化:为云计算找到新蓝海</a> </li><li> <a href="/qtweb/news32/190732.html">iOS9collectionView新特性</a> </li> </ul> </div> </div> <div class="col-lg-3 noneb"> <div class="bkright" style="margin-top: 0"> <p><a href="https://www.cdcxhl.com/news/jianzhan/">建站公司知识</a></p> <ul> <li> <a class="text_overflow" href="/qtweb/news41/193591.html">CentOSAtomicHost7.5发布,给那些想要运行Linux容器的人</a> </li><li> <a class="text_overflow" href="/qtweb/news19/206719.html">云安全和风险缓解</a> </li><li> <a class="text_overflow" href="/qtweb/news13/181013.html">plc编程stmr什么意思</a> </li><li> <a class="text_overflow" href="/qtweb/news7/176457.html">美国云计算市场呈爆发性增长 市场步入成熟</a> </li><li> <a class="text_overflow" href="/qtweb/news47/189097.html">Linux下查看MySQL端口号指南(linux怎么查看当前mysql的端口号)</a> </li><li> <a class="text_overflow" href="/qtweb/news46/183646.html">美国服务器和香港服务器</a> </li><li> <a class="text_overflow" href="/qtweb/news6/190806.html">创新互联OceanBase教程:OceanBaseALTERTABLEGROUP</a> </li><li> <a class="text_overflow" href="/qtweb/news12/168162.html">企业VPN应用简单概要</a> </li><li> <a class="text_overflow" href="/qtweb/news7/160607.html">网络平台建设企业应该注意哪些问题,如何打造一家专业的网络平台建设企业</a> </li><li> <a class="text_overflow" href="/qtweb/news12/191712.html">linux启动mysql报错日志</a> </li><li> <a class="text_overflow" href="/qtweb/news32/161682.html">由繁化简企业内网安全的精益化管理</a> </li><li> <a class="text_overflow" href="/qtweb/news13/168213.html">上海网站推广优化企业是什么,上海网站推广优化企业的重要性</a> </li><li> <a class="text_overflow" href="/qtweb/news43/206893.html">html如何让图片和文字同行</a> </li><li> <a class="text_overflow" href="/qtweb/news19/207269.html">擦亮自己的眼睛去看SQL Server之简单Insert</a> </li><li> <a class="text_overflow" href="/qtweb/news45/198145.html">网站无法打开输入直接跳转</a> </li> </ul> </div> <div class="bkright tag"> <p><a href="https://www.cdcxhl.com/hangye/" target="_blank">同城分类信息</a></p> <ul> <li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/zbljbc/" target="_blank">自拌料搅拌车</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/huaxiang/" target="_blank">花箱</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/jszz/" target="_blank">假山制作</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/hwxxy/" target="_blank">户外休闲椅</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/fadianji/" target="_blank">柴油发电机</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/wsjgd/" target="_blank">卫生间隔断</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/baiwuyu/" target="_blank">白乌鱼</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/ldjbc/" target="_blank">履带搅拌车</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/zkj/" target="_blank">公路钻孔机</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/bgcl/" target="_blank">办公窗帘</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/ddcl/" target="_blank">电动窗帘</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/loutihulan/" target="_blank">楼梯护栏</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/yupeng/" target="_blank">雨棚定制</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/sdgz/" target="_blank">水电改造</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/fadianjihs/" target="_blank">发电机回收</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/sdjbc/" target="_blank">隧道混凝土搅拌车</a> </li> </ul> </div> </div> </div> <div class="carousel-inner linkbg" style="background: #fff"> <div class="container"> <a href="http://m.cdcxhl.cn/qiye/ " target="_blank">企业网站建设公司</a>    <a href="http://www.kswsj.cn/tuiguang/" target="_blank">网站SEO优化排名</a>    <a href="https://www.cdcxhl.com/app.html" target="_blank">app软件开发公司</a>    <a href="https://www.cdxwcx.com/wangzhan/muban.html" target="_blank">成都成品网站</a>    <a href="http://seo.cdcxhl.cn/wztg/" target="_blank">成都外贸网站优化</a>    <a href="http://www.cdkjz.cn/fangan/waimao/" target="_blank">外贸网站建设方案</a>    <a href="http://www.cdxwcx.cn/tuoguan/jianyang.html" target="_blank">简阳机房托管</a>    <a href="https://www.cdcxhl.com/tuoguan/yidong/" target="_blank">成都移动服务器托管</a>    <a href="http://m.xwcx.net/" target="_blank">H5网站制作</a>    <a href="http://www.sczitong.cn/" target="_blank">梓潼网站建设</a>    <a href="http://m.cdcxhl.cn/dingzhi/" target="_blank">成都定制网站建设</a>    <a href="http://www.kswsj.cn/tuiguang/" target="_blank">网站优化排名</a>    <a href="http://www.3aiso.com/" target="_blank">证企宝企业</a>    <a href="http://www.cdhuace.com/zhaopai.html" target="_blank">成都广告招牌制作</a>    <a href="http://chengdu.cdcxhl.cn/ " target="_blank">成都网站建设</a>    <a href="http://www.cdkjz.cn/fangan/jianshe/" target="_blank">网站建设报价方案</a>    <a href="http://www.cdxwcx.cn/tuoguan/xiyun.html" target="_blank">成都移动托管</a>    <a href="http://www.scquxian.com/" target="_blank">渠县网站建设</a>    <a href="http://www.cdhthh.cn/" target="_blank">华泰海航</a>    <a href="http://www.cdhuace.com/faguangzi/wbfgz.html" target="_blank">无边发光字厂家</a>     </div> </div> <footer> <div class="carousel-inner footjz"> <div class="container"> <i class="icon iconfont zbw"></i> 高品质定制 <i class="icon iconfont"></i> 跨终端自动兼容 <i class="icon iconfont"></i> 节约开发成本 <i class="icon iconfont"></i> 开发周期短 <i class="icon iconfont"></i> 一体化服务 <button type="button" class="btn btn-default btn-lg" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 立即开始2800定制网站建设</button> <button type="button" class="btn btn-default btn-xs" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 2800定制网站建设</button> </div> </div> <div class="carousel-inner bqsy"> <div class="container"> <div class="lxfs"> <h4 class="yutelnone">028-86922220 13518219792</h4> <h4 class="yutelblock"><a href="tel:02886922220">028-86922220</a> <a href="tel:13518219792">13518219792</a></h4> <a class="btn btn-default" href="tencent://message/?uin=532337155&Site=&Menu=yes" role="button">网站建设<span>QQ</span>:532337155</a> <a class="btn btn-default" href="tencent://message/?uin=631063699&Site=&Menu=yes" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=532337155&version=1&src_type=web&web_src=oicqzone.com" role="button">网站制作<span>QQ</span>:532337155</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=631063699&version=1&src_type=web&web_src=oicqzone.com" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn-default nonea" href="tencent://message/?uin=1683211881&Site=&Menu=yes" role="button">售后QQ:1683211881</a> <div class="dz">创新互联建站专注: <a href="https://www.cdcxhl.com/" target="_blank">网站设计</a> <a href="https://www.cdcxhl.com/" target="_blank">网站制作</a> <a href="https://www.cdcxhl.com/" target="_blank">网站建设</a> <address>地址:成都太升南路288号锦天国际A幢10楼</address> </div> </div> <div class="bzdh dz"><img src="https://www.cdcxhl.com/imges/bottom_logo.png" alt="创新互联"> <p><a href="https://www.cdcxhl.com/menu.html" target="_blank">成都创新互联科技有限公司</a><br> Tel:400-028-6601(7x24h)</p></div> </div> </div> </footer> </body> </html> <script> $.getJSON ("../../qtwebpic.txt", function (data) { var jsonContent = { "featured":data } var random = jsonContent.featured[Math.floor(Math.random() * jsonContent.featured.length)]; $(".adpic .adimg").attr("href",random.link) $(".adpic img").attr("src",random.pic); }) </script>