新窗口运行html代码

function runCode(obj){
	  var code=getByid("runcode"+obj).value;
	  var newwin=window.open('','','');
	  newwin.opener = null;
	  newwin.document.write(code); 
	  newwin.document.close();
}
参考: http://sudodev.cn/articles/122.html

你可能感兴趣的:(新窗口运行html代码)