2

我想知道 javascript heapLib.js 库是否也可用于 firefox。在我遇到的所有阅读材料中,该库与 IE 特定的方法一起使用。另外,当我在firefox中编写以下代码,然后使用firebug调试代码时,它会在使用特定代码的地方准确地给我错误。

<html>
<body>
<script src="heapLib.js">
</script>
<script type="text/javascript">
var heap= new heapLib.ie();    <--- error at this line 
heap.gc();
heap.debugHeap(true);
heap.alloc(512);
heap.alloc("BBBBB","foo");
heap.free("foo");
heap.debugHeap(false);
</script>
</body>
</html>

另外,我在 Debian 上使用 iceweasel,虽然这不应该有太大的区别,但我认为不应该添加这些信息。

任何帮助将不胜感激。谢谢你。

4

0 回答 0