码迷,mamicode.com
首页 > Web开发 > 详细

phpcms评论框iframe无法自适应问题

时间:2014-10-29 16:15:48      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   ar   java   sp   

问题背景:

之前用友言的时候改过网站的ip地址,改成127开头的了。但是协同开发的时候别人用的还是localhost。

结果在用评论的时候iframe死活不能自适应,看了一下源代码v9本身已经写过iframe自适应的方法,而且在之前那个项目中一点儿问题都没有。

那么问题来了,到底咋回事?

问题线索:

在firebug控制台中无意发现报了一个错,说js.html找不到,而js.html的地址是localhost开头的

js.html是v9JS站群跨域的一个文件(不知道啥意思),在v9根目录

下面是代码:

<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head><title>V9 JS站群跨域</title></head>
<body onload="a()">
<script type="text/javascript">
function a(){
    var q = location.search.replace(?,‘‘).split(|);
    if (top.document.getElementById(comment_iframe)) top.document.getElementById(comment_iframe).height=(q[0] ? q[0] : 0);
        if (top.document.getElementById(comment)) top.document.getElementById(comment).innerHTML=(q[1] ? q[1] : 0);
}
</script>
</body>
</html>

问题解决:

发现js.html里面用到了comment_iframe,也就是那个评论iframe,所以把路径改回localhost,OK了!

phpcms评论框iframe无法自适应问题

标签:style   blog   http   io   color   os   ar   java   sp   

原文地址:http://www.cnblogs.com/savokiss/p/4059757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!