我有以下代码,如果我在做$(结果),它会给我SVG元素,是否创建了一个HTML元素
private getSVGImage(imageURL: string) {
let image: any;
$.ajax({
url: imageURL,
headers: {
'Cache-Control': 'max-age=3000'
},
success: function (result) {
image = $(result).find('svg')[0]; //todo: check this for memory leak.
},
async: false
});
return image;
}
我担心因为分离的dom节点而没有留下任何内存泄漏