在 Google Chrome 开发者工具中显示日期对象的值

发布于 2024-09-14 01:18:53 字数 458 浏览 6 评论 0原文

检查脚本的日期变量以查看其值时,是否可以在 Google Chrome 的开发人员工具(开发人员 -> 开发人员工具或 ctrl+shift+i)中进行检查?

例如, Google Chrome:

end_date: Date
start_date: Date

Firefox:

end_date: Mon Nov 01 2010 00:00:00 GMT+0200 {}
start_date: Fri Oct 01 2010 00:00:00 GMT+0300 {}

这个问题可以在 Chrome 中通过添加新的 watch 来解决: date_object.toString() 但这不太方便,也许还有其他方法?

更新:抱歉,我没有在原始问题中指定它 - 日期未显示在“监视表达式”、“范围变量”部分的“脚本”选项卡上。

Is it possible in Google Chrome's Developer Tools (Developer -> Developer Tools or ctrl+shift+i) when inspecting script's date variables to see their values?

For example,
Google Chrome:

end_date: Date
start_date: Date

Firefox:

end_date: Mon Nov 01 2010 00:00:00 GMT+0200 {}
start_date: Fri Oct 01 2010 00:00:00 GMT+0300 {}

This problem can be solved in Chrome by adding new watch:
date_object.toString()
but that is not really convenient, maybe there is some other way?

Update: Sorry i didn't specify it in the original question - date is not displayed on the Scripts tab in the 'Watch expressions', 'Scope variables' sections.

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

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

发布评论

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

评论(2

薄凉少年不暖心 2024-09-21 01:18:53

我不太明白你的问题。
正如我所看到的,调试器正在以您想要的格式显示日期。

您能否为您的问题提供一个用例。

屏幕截图

<html>
<title>test</title>
<head>
<script>
function test()
{
    var t = new Date();
}
setTimeout(test, 1000);
</script>
</head>
<body>
</body>

</html>

I'm not quite understand your question.
As I can see the debugger is showing the Date in format you want.

Could you please provide a use case for your problem.

screenshot

<html>
<title>test</title>
<head>
<script>
function test()
{
    var t = new Date();
}
setTimeout(test, 1000);
</script>
</head>
<body>
</body>

</html>
无悔心 2024-09-21 01:18:53

WebKit 有一个 bug(同样是在 2011 年 11 月 5 日):
https://bugs.webkit.org/show_bug.cgi?id=71605

所以只需将“.toString()”添加到监视变量即可:
例如:curr.toString()

There is a WebKit's bug (again at 2011-11-05):
https://bugs.webkit.org/show_bug.cgi?id=71605

So just add ".toString()" to a watching variable:
For example: curr.toString()

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