我是 Javascript 新手,遇到了一些困难。我想让用户输入一个单词并有一个函数识别该单词并将其打印回同一页面上的用户。每次我运行此代码时,它都会将我带到不同的页面并打印“[object]”。这是我的代码。有人可以帮帮我吗。
健康长寿·繁荣昌盛。
<html>
<head>
<script src="raphael-min.js"></script>
<script src="jquery-1.7.2.js"></script>
<script type="text/javascript">
function animate() {
var txt = document.getElementById("words");
document.write(txt);
}
</script>
</head>
<body>
Text: <input type="text" id="words" value="" />
<input type="submit" value="Animate" onclick="animate()" />
</body>
</html>