我已经使用Alloy UI和jquery编写了javascript它在firefox,chrome和IE 10,11中运行良好,但是IE 9无法正常工作。
当我打开控制台进行调试时,它工作正常。
答案 0 :(得分:2)
您可能在代码中使用console.log
。 IE没有console
对象。仅当控制台处于打开状态时,此对象才存在。
尝试写(在页面/脚本的开头)
if (typeof(console) == 'undefined') console = { log: function () {} };