首页 > 代码库 > 网页中嵌入可以点击“运行代码”执行html,css,js模块

网页中嵌入可以点击“运行代码”执行html,css,js模块

html代码

<textarea name="textarea" cols="60" rows="10" id="code">     运行的代码</textarea> 

JS代码

<script language="JavaScript" type="text/JavaScript"> //运行文本域代码 function runWin(code) {   cod=document.all(code)   var codcode=cod.value;   if (code!=""){     var newwin=window.open(‘‘,‘‘,‘‘); //打开一个窗口    newwin.opener = null // 防止代码对页面修改     newwin.document.write(code); //向的窗口中写入代码code    newwin.document.close();   } } </script> 

 

网页中嵌入可以点击“运行代码”执行html,css,js模块