为什么 jQuery ajax 会在 Firefox 和其他浏览器上导致可怕的内存泄漏?
jsfiddle:http: //jsfiddle.net/Rqfz7/
如果你在 Firefox 之类的浏览器中运行它,这会导致内存攀升。有没有其他人看过这个?有没有办法用 jQuery ajax 阻止内存泄漏?谢谢
$.ajax({
url: "http://ws.geonames.org/searchJSON",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: "M"
},
success: function( data ) {
setInterval(function() {
get_some_stuff();
}, 1000);
load_count = load_count + 1;
$('body h1').text('load_count: ' + load_count);
}
})