gpt4 book ai didi

jQuery Ajax 请求而不加载结果

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

嘿大家,我对 ajax 真的很陌生,我想做的就是调用一个不返回任何内容的 ajax 函数。我用过

$('#myDiv').load('/ajaxScript.asp');

这样就可以将结果加载到 myDiv 中了。我只想运行ajax而不返回任何东西。只需运行我的代码即可。我该怎么做呢?另外,我如何检测它何时完成?谢谢大家!

最佳答案

可以使用$.ajax代替load;这基本上是 $(receiver).load(); 的别名;

此处的文档:http://api.jquery.com/jQuery.ajax/

演示代码在这里:

$.ajax({
url: '/path/to/file',
type: 'POST',
dataType: 'xml/html/script/json/jsonp',
data: {param1: 'value1'},
complete: function(xhr, textStatus) {
//called when complete
},
success: function(data, textStatus, xhr) {
//called when successful
},
error: function(xhr, textStatus, errorThrown) {
//called when there is an error
}
});

关于jQuery Ajax 请求而不加载结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6209952/

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