test

代码代码

<!doctype html>

<html>

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<script type="text/javascript">

function runCode(id) {

    obj 
= document.getElementById(id); 

    var TestWin
=open(''); //打开一个窗口并赋给变量TestWin。 

    TestWin.opener 
= null// 防止代码对页面修改 

    TestWin.document.write(obj.value); 
//向这个打开的窗口中写入代码code,这样就实现了运行代码功能。 

    TestWin.document.close(); 



</script>

</head>



<body>

    
<textarea id="test">

        
<h1>hello world!</h1>

    
</textarea>

    
<input type="button" value="运行" onclick="runCode('test')" />

</body>

</html>

 

 

posted on 2010-12-12 19:33  wtq  阅读(192)  评论(0编辑  收藏  举报