gpt4 book ai didi

php - 如何将输入文本框值的参数传递给 jQuery 中的 ajax

转载 作者:行者123 更新时间:2023-11-28 11:05:43 25 4
gpt4 key购买 nike

我的 Ajax 代码

$(document).ready(function() {
$("#sub").click(function() {
$.ajax({
type: "POST",
url: "jqueryphp.php",
data: "txt1=" + txt1,
success: function(result) {
$("div").html(result);
}
});
});
});​

这是表单代码。我想将 txt1 值传递给 Ajax

<input type="text" name="txt1" id="txt1" /><br>
<input type="button" name="sub" id="sub" value="click Me" />

我想使用此 Ajax 函数将 txt1 值传递到我的 php 页面。

请告诉我Ajax的data属性到底是什么

最佳答案

将数据作为对象而不是字符串发送,并检索文本字段的值,请使用 val():

$(document).ready(function() {
$("#sub").click(function() {
$.ajax({
type: "POST",
url: "jqueryphp.php",
data: {
txt1: $("#txt1").val()
},
success: function(result) {
$("div").html(result);
}
});
});
});​

http://api.jquery.com/val/

关于php - 如何将输入文本框值的参数传递给 jQuery 中的 ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9372033/

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