我有一个可以在 JSFiddle 中运行的代码,但是当我在本地保存 HTML+JS 并在本地测试它时不起作用。我无法弄清楚代码有什么问题。这是我的 JSFiddle
这是实际的代码,不是很长
<!doctype html>
<html>
<head>
<script type="text/javascript" language="Javascript">
function Composer(foobox) {
this.foobox = document.getElementById(foobox);
this.foobox.onkeydown = function(){window.alert("hello")};
}
var myComposer = new Composer("foo");
</script>
</head>
<body>
<textarea id="foo"></textarea>
</body>
</html>