zoukankan      html  css  js  c++  java
  • 解决ie img标签内存泄漏

    代码:

    <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
  • 相关阅读:
    2.4 自给自足的脚本:位于第一行的#!
    2.3 一个简单的脚本
    2.2 为什么要使用Shell脚本
    JSON 字符串 与 java 对象的转换
    ajax异步提交文件
    jquery选择器
    发现前端框架 bui-min.js
    学习hsf
    Git详解
    java学习材料
  • 原文地址:https://www.cnblogs.com/s0611163/p/7655281.html
Copyright © 2011-2022 走看看