如何从JS中的文本框中获取文本

时间:2014-09-06 23:36:12

标签: javascript

以下代码不起作用

<!DOCTYPE html>
<html>
<body>

    <input type="text" id="searchTxt"/>
    <input type="button" id="run"/>
    <script>
        $(document).ready(function() { 
        $("#run").click(function(){
        var input = document.getElementById("searchTxt");
        alert(input);
        });
        });
    </script>

    </body>
    </html> 

如何在文本框中显示和打印值?

2 个答案:

答案 0 :(得分:2)

您必须在<head>标记中包含jQuery JS文件。

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>

答案 1 :(得分:1)

通过getElementById函数

返回元素的

.value