gpt4 book ai didi

javascript - AJAX 获取查询不会导致页面加载

转载 作者:搜寻专家 更新时间:2023-10-31 21:25:02 25 4
gpt4 key购买 nike

我使用以下代码来检测表单选择的变化,然后发送带有数据的 AJAX 获取请求。

    $("#configset").change(function(){

$.ajax({
method: "get",
url: "/bmcfg/index.php", // This is the url that will be requested

data: {"configset": $("#configset").val(),
"configupdate": "update"
},
success:function()//we got the response
{
// alert('Successfully called:'+ $("#configset").val());
},
error:function(){alert('Exeption:');}

});

});

在服务器端,我使用 PHP 来处理请求。

if ((isset($_GET['configupdate']) and $_GET['configupdate'] == 'update'))
{
echo 'get received:'.$_GET['configupdate'];
include project.html.php

我从未在那个新页面上看到回显行?我只希望 PHP 加载新网页,而不必将其作为数据发送回 ajax。

最佳答案

向从 PHP 获取值的函数添加一个参数:

 success:function( data )//we got the response
{
alert( data ); // <========== VALUE ECHOED FROM PHP.
}

关于javascript - AJAX 获取查询不会导致页面加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38132391/

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