gpt4 book ai didi

javascript - jquery $.post 解释

转载 作者:行者123 更新时间:2023-11-28 16:15:22 25 4
gpt4 key购买 nike

我编写了以下代码来使用jQuery发布数据,它工作正常,但是没有return false;,代码不起作用,我发现了这个return语句经过一整天的搜索...

有人可以告诉我,$.post 结束后的 return false; 有什么用吗?
我是 jQuery 的新手,想更好地理解这一点。

$("#formid").submit( function () {    
$.post(
'ajax.php',
$(this).serialize(),
function(data){
$("#result").html(data);
$("#result").fadeIn('slow');
}
);
return false;
});

最佳答案

这里的return false;不是用于AJAX的$.post方法,而是用于阻止表单(#formid)提交,这会取消你的AJAX请求

关于javascript - jquery $.post 解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11643076/

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