. baseURI. .
, baseURI , (), . , baseURI , , , , URL .
, :
var originalURI = document.baseURI;
document.baseURI = childDocument.location;
childDocument.contentWindow.moveOn();
document.baseURI = originalURI;
, baseURI . , <base>, script. , childUrl:
<head>
<base href="/path/to/child.html" />
</head>
, , , . , moveOn().
<base /> <head>, baseURI . , moveOn() , - :
var baseElement = document.getElementsByTagName("base")[0];
baseElement.href = childDocument.location;
childDocument.contentWindow.moveOn();
baseElement.removeAttribute("href");
(, - - ... )
Edit:
Internet Exploder . , . , IE (HA!), , . , ifs.
source
share