以下代码不起作用
<!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>
如何在文本框中显示和打印值?
答案 0 :(得分:2)
您必须在<head>
标记中包含jQuery JS文件。
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
答案 1 :(得分:1)
.value