PHP Script in IFRAME Blocks Other Code

前端 未结 1 590
鱼传尺愫
鱼传尺愫 2020-12-11 09:29

Scenario:

I have two PHP scripts to be called simultaneously:

  1. The first script will run several minutes (PHP based file download), depending on downl
1条回答
  •  不思量自难忘°
    2020-12-11 09:40

    Your problem is as simple as you can imagine. You just don't realize it maybe for a bit lack of knowledge of HTML. So Your code is ok and everything is working as you want but the script that should run at the same time isn't, what is the problem?

    This up here is your problem. The onload call only takes place when everything inside the body tag is completely loaded. So, as your iframe is inside the body the html interpreter load everything (including the iframe and its source), then call your callScripts function.

    To solve your problem I recommend you to create your iframe inside your script. Would be something as this:

    
    
    
        Title of the document
    
        
    
    
    
    
    
    
    
    

    Let me know if it work after that

    0 讨论(0)
提交回复
热议问题