After the project is deployed, this problem sometimes occurs when you open the webpage and refresh the webpage.
Because the appendchild or innerhtml operation of htmlobject is called when the page does not have ready,
Dialog Box: "Internet Explorer cannot open site XXX, operation terminated"
The solution is as follows:
(1) Determine document. readystate = "complete" in the appendchild or innerhtml operations. If no, setTimeout
Perform this operation again in seconds. However, this attribute is only valid for IE and opeara. The document of FF does not have the readystate attribute and is always
Undefined.
(2) Use the defer attribute in the script. It is intended to execute the script after the page is loaded, so that the object cannot be found. Defer not
Checks whether all external files have been downloaded, and determines whether the current page has been fully loaded. In additionCodeBlock cannot be written
Document. Write Method
Method 2: When loading external files, the effect is not good and may cause other unexpected problems.
So the first method is adopted, and the recursive method is used.
Function mytest (){
If (document. readystate = "complete ")
// Execute the Function
Else
SetTimeout ("mytest ()", 1000)
}