在线JS代码编辑测试工具

时间:2022-11-24 11:37:32

利用JS中函数的构造方法之一:

var myfun = new function("参数1", ..."参数N", "实际函数运行代码")

配合TEXTAREA即可编写一个简单的在线测试JS代码的工具,如下:

<html>

<body>

<script language="javascript">

    function CodeTest()

    {

           var Code = document.getElementById("TextArea1").value;

            var MyFun = new function("try{" + Code + "} catch(e){alter('代码有错:' "+ e.description + " ;}");

           myFun();

    }

</script>

<textarea id = "TextArea1" style="width=600px;height=400px">

</textarea>

<input id="Button2" type="button" value="提交测试" onclick="return CodeTest();" style="width=100px;height=60px"/>

</body>

</html>