父页面刷新 保持iframe页面url不变

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了父页面刷新 保持iframe页面url不变相关的知识,希望对你有一定的参考价值。

  思路:点击父页面时写cookies--》刷新时从cookies中奖内容读取出来。

  本文转自:http://blog.163.com/[email protected]/blog/static/114637885201282415580/

<body onbeforeunload="check()">
 <iframe id=‘fjob‘ name=‘fjob‘ style=‘width:757px;margin-top:10px; height:960px;padding:0px 5px;border:0 solid #f00;‘ frameborder="0" scrolling="no" 
 src={if $redirect_url}
 {$redirect_url}
 {else}"http://******.cn/jobs"{/if} >
 </iframe>
</body>

<script>
$(document).ready(function()
{
 var url = getCookie(pre_url);
 if (url)
 {
  $("#fjob").attr(src, );
 }
});

function check()
{
 pre_url = window.frames[fjob].document.location;
 setCookie(pre_url, pre_url, 1);
}

function getCookie(c_name)
{
 if (document.cookie.length>0)
   {
   c_start=document.cookie.indexOf(c_name + "=")
   if (c_start!=-1)
  { 
  c_start=c_start + c_name.length+1 
  c_end=document.cookie.indexOf(";",c_start)
  if (c_end==-1) c_end=document.cookie.length
  return unescape(document.cookie.substring(c_start,c_end))
  } 
   }
 return ""
}

function setCookie(c_name,value,expiredays)
{
 var exdate=new Date()
 exdate.setDate(exdate.getDate()+expiredays)
 document.cookie=c_name+ "=" +escape(value)+
 ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
</script>

 

以上是关于父页面刷新 保持iframe页面url不变的主要内容,如果未能解决你的问题,请参考以下文章

怎么禁止iframe父页面刷新页面

iframe嵌入的子页面如何刷新父窗口

iframe结构的网站按F5刷新子页面的实现方式

(转)iframe刷新父页面

刷新页面时 select值保持不变

iframe子页面样式怎么在父页面修改