gpt4 book ai didi

php - Ajax请求JQuery发送div

转载 作者:行者123 更新时间:2023-12-01 07:10:12 24 4
gpt4 key购买 nike

我有一个 ajax 请求将我的邮件模板保存在数据库中。但是我无法通过ajax请求发送我的div?我已经在互联网上查找了两个小时,但找不到解决方案

ajax 文件:

function saveEmail(){
var mail3 = $jQ('templateContent');
$jQ.ajax({
method: 'POST',
url: 'ajax/saveMail.php',
data: {mail2: mail3.html(), test: "test"}
}).done(function( data ) {
console.log(data);
});

}

saveMail.php:

echo '<pre>';
print_r($_POST);
echo '</pre>';

exit();

我得到的唯一 POST 值是测试示例:

    <pre>Array
(
[test] => test
)
</pre>

一些有用的信息:

mail3 = `[prevObject: jQuery.fn.jQuery.init[1], context: document, selector: "templateContent", jquery: "1.10.2", constructor: function…]`

最佳答案

var mail3 = $jQ('templateContent');

应该是这样的
$jQ('.templateContent');$jQ('#templateContent');

关于php - Ajax请求JQuery发送div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29251906/

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