源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

js网页中的(运行代码)功能实现思路

  • 时间:2021-06-16 07:05 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js网页中的(运行代码)功能实现思路
[u]复制代码[/u] 代码如下:
<!DOCTYPE html> <html> <head> <meta charset='utf8' /> <title>网页中的运行代码功能</title> <script type="text/javascript"> function runCode(oCode) { var win = window.open('', "_blank", ''); win.document.open('text/html', 'replace'); win.opener = null win.document.write(oCode.value); win.document.close(); } </script> </head> <body> <textarea id="code1" rows="10" cols="95"> <!DOCTYPE html> <html> <head> <meta charset='utf8' /> <title>测试文档</title> </head> <body> 测试文档 - 你可以先修改部分代码再运行 <script>alert('hello')</script> </body> </html> </textarea> <br> <input type="button" value="运行代码" onclick="runCode(code1)"> </body> </html>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部