动态执行JS、HTML

时间:2021-04-06 21:41:46

打开新窗口测试HTML代码



代码如下:
    function runCode(code)
    {
		var win = window.open('','_blank','');
		win.document.open('text/html', 'replace');
		win.opener = null;
		win.document.write(code);
		win.document.close();
    }

动态执行JS代码



代码如下:

    function runJs(code)
    {
		new Function(code)();
    }