gpt4 book ai didi

javascript - 使用 Ajax 提交表单和字符串

转载 作者:行者123 更新时间:2023-11-28 18:30:40 24 4
gpt4 key购买 nike

如何使用 Ajax 提交表单和字符串
我尝试了这个,但没有成功,因为我无法在 PHP 页面中获取 $_POST['foo']) :

$(document).ready(function() { 
$('#togreenform').submit(function(e) {
e.preventDefault();
$.ajax({
type: 'POST',
url: 'operations.php?r=togreen',
data: { $(this).serialize(),
'foo': 'bar'},
success: function(msg) {
alert(JSON.parse(msg));
},
error: function() {
//alert('failure');
}
})
return false; // prevent form from submitting
});
});

最佳答案

您的数据属性应如下所示:

data : {
foo: 'bar',
otherprop: 'foo'
};

data : $(this).serialize()+"&foo=bar"

序列化函数创建字符串以标准 URL 编码表示法创建文本字符串。

由于您没有为第一个键(即文本字符串)提供值,因此您的代码生成了无效对象。

关于javascript - 使用 Ajax 提交表单和字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38080930/

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