HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(cainiaoplay.com)</title> </head> <body> <iframe src="../html/html-tutorial.html" style="height:380px;width:520px;"></iframe> <p>点击以下按钮获取 iframe 中 h1 节点,并显示在本页中。</p> <p><strong>注意:</strong> Internet explorer 8 及更早 IE 版本支持该方法。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var frame = document.getElementsByTagName("IFRAME")[0] var h = frame.contentWindow.document.getElementsByTagName("H1")[0]; var x = document.adoptNode(h); document.body.appendChild(x); } </script> </body> </html>
动行结果