parent.fram1.location.href=parent.fram1.location.href

解决方案 »

  1.   

    把你的POST传递的变量改为GET传递或者SESSION传递即可
    如果这个你不懂的话......
    只能自己学习了
      

  2.   

    用这个试试 header("Cache-control: private");
      

  3.   

    直接跳转不就可以了,要传参数用get传递
      

  4.   

    用“net_lover(孟子E章)”的方法倒是可以,但又有新问题,fram1内容:
    <body onload="countdown()">
    function countdown()
    {
    ......setTimeout("countdown()",1000)
    }在fram3内,如何先使fram1中的setTimeout停下来,再执行下面句子
    parent.fram1.location.href=parent.fram1.location.href
      

  5.   

    tid = setTimeout("countdown()",1000)
    clearTimeout(tid)
      

  6.   

    我用下面代码,还是不行!是不是数据有缓存还是什么原因?
    the_timeout=setTimeout("countdown()",1000)parent.fram1.clearTimeout(parent.fram1.the_timeout)
    parent.fram1.location.href=parent.fram1.location.href
      

  7.   

    用parent.fram1.location.href=parent.fram1.location.href
    数据不能更新,确有刷新动作,但数据不变!
    用IE的刷新确可以!
    为什么?