运行js代码 来源:未知 作者: 类型:文章教程 点击次数: 发布时间:2017-01-10 16:19:54 本程序可以在输入框输入js代码,然后运行输入框内输入的js代码,如果出错,会弹出错误的原因。运行下面的代码,测试下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>运行js代码 - 我爱模板网 www.5imoban.net</title> </head> <body> <textarea id='code' cols='60' rows='10'> //请在这里输入js代码 </textarea><br /> <button id='btn'>运行js代码</button> <script> document.getElementById('btn').onclick = function(){ try{ new Function(document.getElementById('code').value)(); //或者 eval(document.getElementById('code').value); }catch(e){ alert('语句异常:'+e.message) } } </script> </body> </html> 提示:您可以先修改部分代码再运行 点击查看更多关于:js运行代码原理 TAGS: 运行js代码 上一篇: js数组的sort排序详解 下一篇: javascript中this是的用法总结