通过 $.load 提交表单未正确发布数据
要使用 $.load 提交数据而不重新加载页面,您需要了解 AJAX 的概念。 AJAX 涉及在不中断当前页面的情况下向外部服务器发出异步请求。
在您的情况下,您可以使用 AJAX 将数据发布到“Monsterrequest.php”文件。这是一个示例:
// Load the "Readthis" content via AJAX (instead of using $.load) $.ajax({ url: Readthis, type: "POST", // Set the request type to "POST" data: { TestVar: TestVar }, // Add the TestVar as a POST parameter success: function(response) { // Handle the response from Monsterrequest.php here console.log(response); } });
在“Monsterrequest.php”文件中,您可以使用 $_POST 全局检索 POST 数据:
<?php $testVar = $_POST['TestVar']; // Process and respond with data as needed ?>
通过使用 AJAX,您可以提交将数据发送到“Monsterrequest.php”,无需重新加载页面,允许其异步处理和返回数据。
以上是如何使用$.load提交数据而不重新加载页面?的详细内容。更多信息请关注PHP中文网其他相关文章!