cnblogs 运行代码功能尝试
程序员文章站
2023-10-30 15:40:22
首先定义个文本域并且给个id
首先定义个文本域并且给个id
<textarea id="o_txt_1" rows="8" cols="80"> <!--要运行的代码--> </textarea>
然后定义个按钮
<input type="button" value="运行代码" onclick="runcode('o_txt_1')" />
最后当然是要写函数了,代码如下:
function runcode(id){
var obj=document.getelementbyid(id);
var win = window.open('', "_blank", '');
win.document.open('text/html', 'replace');
win.opener = null;
win.document.write(obj.value);
win.document.close();
}
<textarea id="o_txt_1" rows="8" cols="80"> <!--要运行的代码--> </textarea>
然后定义个按钮
<input type="button" value="运行代码" onclick="runcode('o_txt_1')" />
最后当然是要写函数了,代码如下:
复制代码 代码如下:
function runcode(id){
var obj=document.getelementbyid(id);
var win = window.open('', "_blank", '');
win.document.open('text/html', 'replace');
win.opener = null;
win.document.write(obj.value);
win.document.close();
}