<html> <head> <meta charset="utf-8"> <script> var tmp = "<iframe src=‘http://www.cnblogs.com/kaituorensheng/‘></iframe>"; document.write(tmp); function getValue() { document.getElementById("show").innerHTML = tmp; } </script> </head> <body> <div id = "show" onclick="getValue()">click here</div> </body> </html>
document.write在页面导入时加载,document.getElementById.innterHTML需要事件触发。
效果
初始
点击“click here”后
时间: 2024-10-26 02:21:08