我希望能够在文本框中输入内容,然后得到一个alert说出我输入的内容。容易吧?我尝试使用getElementbyId并使其适应一些变量,但事实证明它给出了未定义的含义。
这是代码:

    <input type="submit" name="button" style="position: absolute; top: 283.5px; left: 45%; width: 142px; height: 40px; background-color:lime; border-color:forestgreen; font-weight:700; font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif" value="CLICK ME"/>
    <div style="position: absolute; top: 283.5px; left: 23%; width: 142px; height: 40px; background-color:lime; border-color:forestgreen;">
        <input type="text" name="linksubmit" id="linksubmit" style="position: absolute; top: 10px; width:138px" />
    </div>
    <script>
        var linksubmit = document.getElementById("linksubmit").value
        function Button() {
            alert(linksubmit)
        }
    </script>




如果您有任何正当理由无法解决问题,将不胜感激。

最佳答案

const theThing = document.getElementById('testerooni');
showMe = () => { alert(theThing.value) };

<input id="testerooni" type="text">
<button onclick="showMe()">SHOW ME</button>

09-11 15:24