您好,登錄后才能下訂單哦!
這篇文章主要介紹如何解決ie img標(biāo)簽內(nèi)存泄漏的問題,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
html代碼:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>IMG元素內(nèi)存泄露測試</title>
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript">
$(function () {
var i = 0;
var t;
// img標(biāo)簽方式
function changeImage() {
i++;
var picIndex = i % 20;
$("#imagePath").html("images/" + picIndex + ".jpg");
$("#div").append("<img width='100' height='100' src='images/" + picIndex + ".jpg' />");
};
function end() {
clearInterval(t);
$("#div").find("img").each(function () {
$(this).attr("src", "");
$(this).remove();
});
CollectGarbage();
}
t = window.setInterval(changeImage, 200);
window.setTimeout(end, 5000);
});
</script>
</head>
<body>
<label id="imagePath"></label>
<!-- 使用img標(biāo)簽,不改變圖片大小,不會發(fā)生內(nèi)存泄漏。 -->
<div id="div">
</div>
</body>
</html>
釋放img占用內(nèi)存的js代碼:
$("#div").find("img").each(function () {
$(this).attr("src", "");
$(this).remove();
});
CollectGarbage();
以上是“如何解決ie img標(biāo)簽內(nèi)存泄漏的問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。