假设您正在使用ajax加载图像,则可以简单地在window.onunload事件中中止请求。为您使用的XMLHttpRequest对象声明一个全局变量。var xhr;//if using the XMLHttpRequest object directly//you may already be doing something like thisfunction getImage(...){ xhr = new XMLHttpRequest(); xhr.open(....);}如果使用jQuery,则可以将$ .ajax()或$ .get调用的返回值分配给xhr变量。xhr = $.ajax(.....);处理window.onunload并中止请求。window.onunload = function(){ xhr.abort();}