• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    cnblogs 运行代码功能尝试
    首先定义个文本域并且给个ID
    textarea id="O_txt_1" rows="8" cols="80"> !--要运行的代码--> /textarea>
    然后定义个按钮
    input type="button" value="运行代码" onclick="runCode('O_txt_1')" />
    最后当然是要写函数了,代码如下:
    复制代码 代码如下:

    function runCode(id){
    var obj=document.getElementById(id);
    var win = window.open('', "_blank", '');
    win.document.open('text/html', 'replace');
    win.opener = null;
    win.document.write(obj.value);
    win.document.close();
    }
    上一篇:变量、函数、类的命名规则
    下一篇:windows 中 \r\n 区别于 类unix中的\n 疑问理解(crlf回车换行)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    cnblogs 运行代码功能尝试 cnblogs,运行,代码,功能,尝试,