文章出處

代碼:

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>IMG元素內存泄露測試</title>
    <script type="text/javascript" src="jquery-1.7.1.js"></script>
    <script type="text/javascript">
        $(function () {
            var i = 0;
            var t;

            // img標簽方式  
            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標簽,不改變圖片大小,不會發生內存泄漏。 -->
    <div id="div">
    </div>
</body>
</html>
View Code

釋放img占用內存的js代碼:

$("#div").find("img").each(function () {
    $(this).attr("src", "");
    $(this).remove();
});
CollectGarbage();
View Code

 


文章列表




Avast logo

Avast 防毒軟體已檢查此封電子郵件的病毒。
www.avast.com


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()