我需要测试一个使用控制台对象的 JavaScript 项目。所以我从 IE10 降级到 IE8,但我不确定我的环境测试用例对其他人来说是否“安全”。
这如何在 Internet Explorer 中使用控制台日志记录?说console
是undefined
没有开发者工具(F12)。但我目前的经验是,console.log
无论 F12 是否处于活动状态,它始终可用。
这篇文章说,它们是完全启用的。本文sais 控制台在 IE8 中未定义。
它看起来像 IE8!= IE8。在 IE、Firefox、Opera 和 Safari 中测试页面还不够吗?
<html>
<body>
<script>
document.write('Console is <b>' + typeof console + '</b>! <br />');
document.write('Even console.log is <b>' + typeof console.log + '</b>!<br />');
document.write(window.navigator.userAgent);
</script>
</body>
</html>