ajax同步请求JS代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax同步请求JS代码相关的知识,希望对你有一定的参考价值。

ajax同步请求JS代码

	<script type="text/javascript">
		var txt = document.getElementById(‘txt‘);
		//1.创建XMLHttpRequest对象
		var xhr = null;
		if(window.XMLHttpRequest) {
			xhr = new XMLHttpRequest();
		}else {
			xhr = new ActiveXObject(‘Microsoft.XMLHTTP‘);
		}
		//2.打开与服务器的链接
		xhr.open(‘get‘,url,false);
		//3.发送给服务器
		xhr.send(null);
		//4.响应就绪(同步请求)
		var json = JSON.parse(xhr.responseText);
		txt.innerhtml = json;
		console.log(‘其他程序‘);
	</script>

  

 

以上是关于ajax同步请求JS代码的主要内容,如果未能解决你的问题,请参考以下文章

ajax同步与异步的区别

js ajax同步请求造成浏览器假死的问题

Ajax同步与异步优缺点与适用情况。

ajax的同步与异步

ajax的async属性(控制同步和异步)

AJAX中同步和异步的区别和使用场景