gpt4 book ai didi

javascript - 哪些浏览器支持函数_now()?

转载 作者:行者123 更新时间:2023-11-30 16:22:09 24 4
gpt4 key购买 nike

我正在使用在最新的 firefox 和 IE 11 中工作但在 Ie9 中失败的 jquery 插件。我刚刚调试了它,似乎 IE9 失败了:

var curr = _now();

IE9 说它不能识别 _now();

哪里可以看到哪些浏览器支持这个功能?是否有任何建议来替换上面适用于 IE9 的行?

最佳答案

没有浏览器原生实现_now

要获取当前日期,请使用

var current = new Date();

收件人get the current timestamp and support older JavaScript implementations , 使用

var current = (new Date()).getTime();

收件人get the current timestamp for ES5 and above , 使用

var current = Date.now();

任何进一步的问题都将只与您使用的插件有关。它定义了 _now 并以 IE9 无法处理的方式进行。如果您绝对必须继续使用该插件,则需要找出该特定插件出现故障的原因。

关于javascript - 哪些浏览器支持函数_now()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34583843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com