js判断框架

放主架
<script>

if(parent.location.href!=”http://192.168.0.3/bbs/”  && parent.location.href.indexOf(“http://192.168.0.3/bbs/default.htm”)<0)
{
parent.location=”http://192.168.0.3/bbs/default.htm?”+self.location;
}
</script>

 
放框架首页
<script>
document.write(‘<IFRAME frameBorder=”0″ id=”main” name=”main” scrolling=”yes” ‘)
var n=self.location.href.indexOf(“?”)//查看是否包含参数
if(n>0)//存在参数
{
//指向参数
document.write(” src=”+self.location.href.substr(n+1))
}
else
{
document.write(” src=bbsweb/bbsweb.aspx”)
}
document.write(‘ style=”HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1″></IFRAME>’)
</script>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注