7

我希望我的屏幕上有一个文本框(就像我现在正在输入的那个),您可以输入然后单击提交按钮,它将您在框中输入的任何内容发送到 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>

好的,这很好,但是假设我想要从该文本框和按钮输入,而我已经在一个函数中并且不想重新启动该函数?

谢谢,杰克

4

4 回答 4

11

当您的脚本运行时,它会阻止页面执行任何操作。您可以使用以下两种方法之一解决此问题:

  • 使用var foo = prompt("Give me input");,它将为您提供用户在弹出框中输入的字符串(或者null如果他们取消它)
  • 将您的代码拆分为两个函数 - 运行一个函数来设置用户界面,然后提供第二个函数作为用户单击按钮时运行的回调。
于 2013-03-09T00:27:50.660 回答
5

这是一种糟糕的风格,但我认为你有充分的理由做类似的事情。

<html>
<body>
    <input type="text" id="userInput">give me input</input>
    <button id="submitter">Submit</button>
    <div id="output"></div>
    <script>
        var didClickIt = false;
        document.getElementById("submitter").addEventListener("click",function(){
            // same as onclick, keeps the JS and HTML separate
            didClickIt = true;
        });

        setInterval(function(){
            // this is the closest you get to an infinite loop in JavaScript
            if( didClickIt ) {
                didClickIt = false;
                // document.write causes silly problems, do this instead (or better yet, use a library like jQuery to do this stuff for you)
                var o=document.getElementById("output"),v=document.getElementById("userInput").value;
                if(o.textContent!==undefined){
                    o.textContent=v;
                }else{
                    o.innerText=v;
                }
            }
        },500);
    </script>
</body>
</html>
于 2013-03-09T00:26:39.957 回答
3

晚读这个,但是..我读你的问题的方式,你只需要更改两行代码:

接受用户输入,函数在屏幕上写回。

<input type="text" id="userInput"=> give me input</input>
<button onclick="test()">Submit</button>

<!-- add this line for function to write into -->
<p id="demo"></p>   

<script type="text/javascript">
function test(){
    var userInput = document.getElementById("userInput").value;
    document.getElementById("demo").innerHTML = userInput;
}
</script>

于 2014-09-24T19:36:38.823 回答
1

我尝试将输入标签的值发送/添加到对我来说效果很好的 JavaScript 变量中,这里是代码:

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript">
            function changef()
            {
            var ctext=document.getElementById("c").value;

            document.writeln(ctext);
            }

        </script>
    </head>
    <body>
        <input type="text" id="c" onchange="changef"();>

        <button type="button" onclick="changef()">click</button>
    </body> 
</html>
于 2019-01-15T14:28:07.483 回答