在框架结构页面中,如何实现在右框架中打开一个页面,1分钟后自动打开另一个页面,动作不能做在被显示的页面里,即被显示的页面本身不会自动转向另一个页面.(如果有更好的方法,也可以不使用框架),
   请高手指点,小弟明白,区区100分只能了表心意!也知道高手们也在乎这些,不过这个对小弟用处不小,谢谢了各位大侠!!

解决方案 »

  1.   

    <meta http-equiv="refresh" content="60; 
    url=001465.html"> 
    其中的“60”是告诉浏览器在页面加载60秒钟后自动跳转到001465.html这个页面。 
      

  2.   

    可以用setTimeOutfunction openwindow()
    {
        ..........
        //得到想要打开的窗口
        top.frames[""].location.href="打开的窗口";
        setTimeOut("openwindow()",60000);
    }
      

  3.   

    <script language='javascript'>
    var url = new Array();
    url[0] = "xxx";
    ...
    url[9] = "yyy";var count = -1;
    function openwindow()
    {
        count = count + 1;
        var childw = window.open(url[count],'popup')
        if (count < 10) 
        {
            setTimeOut("openwindow()",60000);
        }
        else
        {
            childw.close();
        }
    }openwindow();
    </script>
      

  4.   

    <script language='javascript'>
    var url = new Array();
    url[0] = "xxx";
    ...
    url[9] = "yyy";var childw;
    var count = -1;
    function openwindow()
    {
        if (count == 10)
        {
            childw.close();
            return;
        }    count = count + 1;
        childw = window.open(url[count],'popup')
        if (count < 10) 
        {
            setTimeOut("openwindow()",60000);
        }
    }openwindow();
    </script>
      

  5.   

    使用document.frames["名称"].src=""
    然后使用setTimeOut来确定时间。
      

  6.   

    明白,谢谢各位高手!
    应该用setInterval,setTimeOut只执行一次