Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$.get( 'http://request.url',function(response){ document.write(response.returnText); });
ajax url需要很长时间才能响应,处理这个请求时,页面不会响应,比如链接的所有元素都不能点击。
我知道 ajax 是一个异步请求,并且不会阻塞主(页面)线程,但是大家,为什么页面没有响应?