在 IE9 javascript 中不工作,但在打开控制台后它工作
In IE9 javascript not working, but after open console it work
我已经使用 Alloy UI 和 jquery 编写了 javascript 它在 firefox、chrome 和 IE 10,11 中工作正常,但 IE 9 它不起作用。
当我打开控制台进行调试时,它工作正常。
您可能在代码中使用了 console.log
。 IE 没有 console
对象。此对象仅在控制台打开时存在。
尝试写作(在 page/scripts 的开头)
if (typeof(console) == 'undefined') console = { log: function () {} };
我已经使用 Alloy UI 和 jquery 编写了 javascript 它在 firefox、chrome 和 IE 10,11 中工作正常,但 IE 9 它不起作用。
当我打开控制台进行调试时,它工作正常。
您可能在代码中使用了 console.log
。 IE 没有 console
对象。此对象仅在控制台打开时存在。
尝试写作(在 page/scripts 的开头)
if (typeof(console) == 'undefined') console = { log: function () {} };