AJAX---取消请求
作者:互联网
abort 取消AJAX请求
//获取元素对象 const btns = document.querySelectorAll('button'); let x = null; btns[0].onclick = function(){ x = new XMLHttpRequest(); x.open("GET",'http://127.0.0.1:8000/delay'); x.send(); } // abort 取消AJAX请求 btns[1].onclick = function(){ x.abort(); }
标签:function,请求,---,AJAX,abort,onclick,btns 来源: https://www.cnblogs.com/leiyanting/p/15385551.html