可能的重复:
是否可以沙盒 JavaScript 在浏览器中运行?
我想让用户能够在这样的文本区域中输入 JavaScript:
<!DOCTYPE html>
<html>
<head>
<script>
function lapzwans()
{
var d = document.getElementById("area").value;
document.getElementById("blahblah").innerHTML = d;
}
</script>
</head>
<body>
<h1>Javascript in Javascript</h1>
<p>This experiment attempts to launch a script from another script.</p>
<p>Enter your script in the text area</p>
<textarea type="text" id="area"></textarea>
<button onclick="lapzwans()">Click here</button>
<p id="blahblah"></p>
<p id="deegroller">Make this text green</p>
</body>
</html>
我已经尝试过了,但我没有得到任何结果。
这是不可能的,还是我做错了?
提前致谢。