Console.log IE9 问题

发布于 2024-12-04 10:00:19 字数 227 浏览 0 评论 0原文

我使用 local.storage 制作了一个简单的任务管理器,并使用 console.log 设置一些变量,但这样整个任务应用程序就无法在 IE 中运行。

有没有其他方法可以做到这一点?

这是所有其他浏览器中工作任务管理器的小提琴: http://jsfiddle.net/cRse9c/

I made a simple Task Manager using local.storage and I'm using console.log to set some variables but with that, the entire task app doesn't work in IE.

Is there any alternative method of doing this?

Here is the fiddle of the working Task Manager in every other browser: http://jsfiddle.net/cRse9c/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凡尘雨 2024-12-11 10:00:19

如果您想使用 console.log() 并使其在 IE 调试器未运行时不会在 IE 中崩溃,您可以在全局范围内的 javascript 中将以下内容放在任何 之前执行 console.log() 语句会为您提供一个虚拟的 console.log() ,这将使您的 console.log() 语句不会导致错误

if (!window.console) {window.console = {};}
if (!console.log) {console.log = function() {};}

:当然,如果你真的想看console.log() 在 IE 中输出,那么您必须运行 IE 调试器,这将导致 console.log() 被定义或使用其他一些调试环境定义它。

If you want to use console.log() and have it not bomb out in IE when the IE debugger is not running, you can place the following in your javascript at the global scope before any console.log() statements execute to give you a dummy console.log() that will keep your console.log() statements from causing errors:

if (!window.console) {window.console = {};}
if (!console.log) {console.log = function() {};}

Of course, if you actually want to see the console.log() output in IE, then you will have to run the IE debugger which will cause console.log() to get defined or use some other debugging environment that defines it.

或十年 2024-12-11 10:00:19

除非 Firebug 指示灯亮起,否则 IE 中没有 console.log。它会变成未定义的方法/变量错误

更多信息在这里:IE9支持console.log吗?它是一个真正的函数吗?

There's no console.log in IE unless you have Firebug light on. It's gonna turn into a undefined method/variable error

More information here: Does IE9 support console.log, and is it a real function?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文