我希望我的屏幕上有一个文本框(就像我现在正在输入的那个),您可以输入然后单击提交按钮,它将您在框中输入的任何内容发送到 javascript,然后 javascript 将其打印出来。这里是我的代码这是有效的部分。
<html>
<body>
<input type="text" id="userInput"=>give me input</input>
<button onclick="test()">Submit</button>
<script>
function test()
{
var userInput = document.getElementById("userInput").value;
document.write(userInput);
}
</script>
</body>
</html>
好的,这很好,但是假设我想要从该文本框和按钮输入,而我已经在一个函数中并且不想重新启动该函数?
谢谢,杰克