Finding memory leaks in JavaScript using firebug?

ⅰ亾dé卋堺 提交于 2019-11-26 14:15:52

问题


Are there any add-ons for Firefox that I can use to find out with part of the JavaScript causes memory leaks?


回答1:


I've got nothing for firefox, but the webkit inspector in Chrome has a profiler built in that is great for that kind of thing.

As an added bonus it also shows you all browser events such as repaints, so you can engineer your code to have the least impact on the browser.




回答2:


Use Drip.exe / IEleak, I used it a lot to search for memory leaks!

Other hits:

  • jQuery itself prevents a lot of memory leaks!
  • Test your code with http://jslint.com
  • There is a tool by Microsoft itself, but I don't know it is up to date: http://blogs.msdn.com/b/askie/archive/2008/12/31/javascript-memory-leak-detector-for-internet-explorer.aspx
  • There is also integration with Visual Studio: http://berniesumption.com/software/how-to-debug-javascript-in-internet-explorer/
  • There is a good article about mem leaks http://www.ibm.com/developerworks/web/library/wa-memleak/
  • http://www.debugbar.com/?langage=en



回答3:


The best memory profiler I've found is for IE (supports even IE6 ;-). Give it a go - you will be surprised how good it is:

http://ajax.dynatrace.com/ajax/en/



来源:https://stackoverflow.com/questions/5028479/finding-memory-leaks-in-javascript-using-firebug

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!