Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/443.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 在单个iframe中加载具有的不同页面_Javascript_Php_Iframe_Sleep - Fatal编程技术网

Javascript 在单个iframe中加载具有的不同页面

Javascript 在单个iframe中加载具有的不同页面,javascript,php,iframe,sleep,Javascript,Php,Iframe,Sleep,这是问题的延伸 变量间隔=5;//几秒钟内 变量页=[ 'http://facebook.com/profile.php', 'http://facebook.com/notifications.php', 'http://facebook.com/messages.php' ]; var当前页面索引=0; setInterval(函数(){ loadintoIframe('myframe',页面[当前页面索引]); 当前页面索引=(当前页面索引+1)%pages.length; },间隔*1

这是问题的延伸


变量间隔=5;//几秒钟内
变量页=[
'http://facebook.com/profile.php',
'http://facebook.com/notifications.php',
'http://facebook.com/messages.php'
];
var当前页面索引=0;
setInterval(函数(){
loadintoIframe('myframe',页面[当前页面索引]);
当前页面索引=(当前页面索引+1)%pages.length;
},间隔*1000);//第二个setInterval参数为毫秒

“document.all”与支持IE5.5Oh完全不同,我看到了IE5和Netscape 6的评论。1999年针对浏览器的代码。我认为这有点过时。你是否意识到PHP代码和JavaScript代码不会同时运行?如果要重新加载到其他页面,则需要在JavaScript.epascarello中使用setTimeout()-这很好,但我希望定期加载不同的页面。@epascarello-我已更新了我的问题。看一看。
        hi guys, 
        from there i got an idea to use sleep(value). 

        I've developed a code here.

        <!------- Here goes script>

                <script type="text/javascript">

            //Input the IDs of the IFRAMES you wish to dynamically resize to match its content height:
            //Separate each ID with a comma. Examples: ["myframe1", "myframe2"] or ["myframe"] or [] for none:
            var iframeids=["myframe"]

            //Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
            var iframehide="yes"

            var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
            var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers

            function resizeCaller() {
            var dyniframe=new Array()
            for (i=0; i<iframeids.length; i++){
            if (document.getElementById)
            resizeIframe(iframeids[i])
            //reveal iframe for lower end browsers? (see var above):
            if ((document.all || document.getElementById) && iframehide=="no"){
            var tempobj=document.all? document.all[iframeids[i]] : document.getElementById(iframeids[i])
            tempobj.style.display="block"
            }
            }
            }

            function resizeIframe(frameid){
            var currentfr=document.getElementById(frameid)
            if (currentfr && !window.opera){
            currentfr.style.display="block"
            if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) //ns6 syntax
            currentfr.height = currentfr.contentDocument.body.offsetHeight+FFextraHeight;
            else if (currentfr.Document && currentfr.Document.body.scrollHeight) //ie5+ syntax
            currentfr.height = currentfr.Document.body.scrollHeight;
            if (currentfr.addEventListener)
            currentfr.addEventListener("load", readjustIframe, false)
            else if (currentfr.attachEvent){
            currentfr.detachEvent("onload", readjustIframe) // Bug fix line
            currentfr.attachEvent("onload", readjustIframe)
            }
            }
            }

            function readjustIframe(loadevt) {
            var crossevt=(window.event)? event : loadevt
            var iframeroot=(crossevt.currentTarget)? crossevt.currentTarget : crossevt.srcElement
            if (iframeroot)
            resizeIframe(iframeroot.id);
            }

            function loadintoIframe(iframeid, url){
            if (document.getElementById)
            document.getElementById(iframeid).src=url
            }

            if (window.addEventListener)
            window.addEventListener("load", resizeCaller, false)
            else if (window.attachEvent)
            window.attachEvent("onload", resizeCaller)
            else
            window.onload=resizeCaller

            </script>
    <?php
$link1="<a href=\"javascript:loadintoIframe('myframe', 'http://example.com/index.php')\">Home</a>";
$link2= "<a href=\"javascript:loadintoIframe('myframe', 'http://example.com/about.php')\">About Us</a>"; 

 $buffer1 = str_repeat(" ", 4096);
  $buffer2 = str_repeat(" ", 4096);


echo $link1;
echo $buffer1;
 ob_flush();
 sleep(5);
 echo $link2;
Any solution?
<script>
  var interval = 5; // in seconds
  var pages = [
    'http://facebook.com/profile.php',
    'http://facebook.com/notifications.php',
    'http://facebook.com/messages.php'
  ];
  var current_page_index = 0;

  setInterval(function() {
    loadintoIframe('myframe', pages[current_page_index]);
    current_page_index = (current_page_index + 1) % pages.length;
  }, interval * 1000); // second setInterval param is milliseconds
</script>