gpt4 book ai didi

javascript - XMLHttpRequest 和 $ajax 的区别

转载 作者:行者123 更新时间:2023-11-29 18:29:59 25 4
gpt4 key购买 nike

你好,我已经阅读了 jQuery ajax 方法,jQuery 将一些 XMLHttpRequest 包装在里面。我需要(想要)重做 $ajax 的下一个东西,但我担心参数。是否可以在没有参数键的情况下将参数发送到 $ajax url,只是在 URL 参数中?

var element ;
...
if (window.XMLHttpRequest) { // Mozilla, Safari,...
http_request = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
http_request = new ActiveXObject("Microsoft.XMLHTTP");
}
http_request.onreadystatechange = function() { alertContents(element); };
url = unescape(url + parameters);
http_request.open('GET', url, true);
http_request.send(null);

最佳答案

对ajax使用同样的代码会消耗时间

$.ajax({
type: "get",
url: "geocode.php?address="+address,
dataType: "xml",
//async:true,
success : function(xmlData){
alert(xmlData);
},
error : function(){
alert("Could not retrieve XML file.");
}

});

关于javascript - XMLHttpRequest 和 $ajax 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9398774/

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