0%

文本框运行html|js

文本框运行html|js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″/>
<title>文本框运行html/js代码</title>
<script>
window.onload = function () {
var oTxt = document.getElementById("txt1");
var oBtn = document.getElementById("btn1");
oBtn.onclick = function () {
document.write("aa");
var oNewWin = window.open("about:blank");
oNewWin.document.write(oTxt.value);
}
}
</script>
</head>
<body>
</body>
<textarea id=”txt1″ rows=”10″ cols=”40″></textarea><br/>
<input id=”btn1″ type=”button” value=”运行”>
</html>

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!