<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
<title>文本框运行代码,IE浏览器有效</title>
<script language="javascript" type="text/javascript">
//运行文本域代码
function runEx(cod1) {
cod = document.all(cod1)
var code = cod.value;
if (code != "") {
var newwin = window.open('', '', ''); //打开一个窗口并赋给变量newwin。
newwin.opener = null // 防止代码对弹出页面修改
newwin.document.write(code); //向这个打开的窗口中写入代码code,这样就实现了运行代码功能。
newwin.document.close();
}
}
</script>
</head>
<body>
<textarea name="textarea" cols="60" rows="10" id="txtcode">
<!--在这里添加你的html域JS代码,示例代码:-->
<script language="javascript" type="text/javascript">
alert("欢迎来到爱178影院"); window.navigate("http://www.ai178.com");
</script>
<!--上面的代码为弹出对话框,并跳转到指定业面-->
</textarea>
<br />
<input onclick="runEx('txtcode')" type="button" value="运行代码" style="cursor:hand" />
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
</body>
</html>