HTML (index.html):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <script type= "text/javascript" > function getIframe(name) { var ifr; if (document.all) ifr = document.frames[name].document; //IE else ifr = document.getElementById(name).contentDocument; //FF return ifr; } function test() { alert(getIframe( "childiframe" ).getElementById( "codeboxy" ).innerHTML); } </script> <iframe id= "childiframe" name= "childiframe" src= "child.html" ></iframe><br /> <a href= "javascript:test();" >Click me</a> |
1 | < div id = "codeboxy" >Hello Codeboxy</ div > |
由父框架取得子框架id的內容,
因隱私權規範僅適用於相同網域。
沒有留言:
張貼留言