我无法让 PHP 读取通过 Ajax 发送的文本。
index.html
modal.php
当我单击该按钮时,我收到消息从 Ajax 发送数据,滑块显示没有错误,但是 PHP 应该读取 Post 的 div 中的文本显示错误:
注意:未定义索引:数据在...
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
您需要将数据作为对象发送。 像这样:
$.ajax({ type: 'POST', url: '//localhost/slider/modal.php', data: {data: 'Test shipping'}, }).done(function() { alert('data sent'); });