为了账号安全,请及时绑定邮箱和手机立即绑定

JS 引起内存泄漏问题

JS 引起内存泄漏问题

一只萌萌小番薯 2019-03-05 13:19:15
代码如下:document.onload = (function() {    var GraphCreator = function(name) {        var thisGraph = this;        console.log(thisGraph);        this.name = name || '';    };    GraphCreator.prototype.setName = function(name) {        var thisGraph = this;        thisGraph.name = name;    };    GraphCreator.prototype.addTab = function(data) {        var content = document.getElementById('content');        var tab = juicer($('#extended_tpl').html(), data);        content.append(tab);    };    window.GraphCreator = GraphCreator;})();var graph = new GraphCreator();graph.setName('graph_one');这样写会引起内存泄漏吗?哪些地方是不合理的?
查看完整描述

2 回答

?
RISEBY

TA贡献1856条经验 获得超5个赞

document.onload才对吧,而且后面应该不是一个自执行吧

要么(function())(),要么document.onload=function()

在外部库引用正确的话,感觉没什么问题


查看完整回答
反对 回复 2019-03-16
?
当年话下

TA贡献1890条经验 获得超9个赞

闭包就是一个函数引用另外一个函数的变量,你确定你有闭包?


查看完整回答
反对 回复 2019-03-16
  • 2 回答
  • 0 关注
  • 449 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信