<html>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<SCRIPT LANGUAGE="JavaScript" type="text/javascript">
<!--
function runCode(obj) {
var winname = window.open('', "_blank", '');
var content = document.getElementById(obj).value;
winname.document.open('text/html', 'replace');
winname.opener = null
winname.document.writeln(content);
winname.document.close();
}
//-->
</SCRIPT>
<body>
<textarea id="theCode" οndblclick="runCode('theCode')" title="双击运行代码" style="width:100%;height:90%;">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> new document </title>
<style type="text/css">
</style>
<script type="text/javascript"></script>
</head>
<body>
<div class="">
<ul>
<li>a</li><li>a</li>
</ul>
<ul>
<li>a</li><li>a</li>
</ul>
</div>
</body>
</html>
</textarea><br>
<input type="button" value="运行代码" οnclick="runCode('theCode')">
</body>
</html>