gpt4 book ai didi

javascript - jquery 第一次尝试时没有捕获文本框的值

转载 作者:行者123 更新时间:2023-12-01 03:13:33 25 4
gpt4 key购买 nike

我有这个简单的代码

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>

</head>
<body>
<form id="form1" runat="server">
<div>

<script>
$(document).ready(function () {

var username = $("#txtusername").val();
$("#btnsubmit").click(function () {
alert(username);
});
})
</script>

<asp:Label ID="lblusername" Text="User Name:" runat="server"></asp:Label>
<asp:TextBox ID="txtusername" runat="server"></asp:TextBox>
<asp:Label ID="lblpass" Text="Password:" runat="server"></asp:Label>
<asp:TextBox ID="txtpass" runat="server"></asp:TextBox>
<asp:Button ID="btnsubmit" Text="Submit" runat="server" />
</div>
</form>
</body>
</html>

当我在浏览器中运行此命令时,为文本框提供值,然后单击它警告为空白的按钮。下次单击时显示该值。可能是什么问题。?

第一次尝试。 enter image description here

第二次尝试。

enter image description here

最佳答案

那是因为您正在读取事件处理程序外部的值。本质上,您希望在用户单击提交按钮时而不是之前读取文本框的值。

可以写成如下:

$(document).ready(function() {
// This code is executed when the page loads.
$("#btnsubmit").click(function() {
// This code is executed when the user clicks on the submit button.
var username = $("#txtusername").val();
alert(username);
});
})

关于javascript - jquery 第一次尝试时没有捕获文本框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45687711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com