触摸屏检测:Chrome 17

发布于 2025-01-06 09:36:30 字数 576 浏览 1 评论 0原文

根据 检测“的最佳方法是什么”使用 JavaScript 的触摸屏设备? 我使用此语句实现了触摸设备检测,

((!!('ontouchstart' in window) ? 1 : 0) == 1)

它很好地返回 true 或 false,也在最新的 Chrome 浏览器 (v17) 中;正如所述。 为了稍微美化我的代码,将此语句放入一个小函数中,

function isTouchDevice() {
 return ((!!('ontouchstart' in window) ? 1 : 0) == 1);
};

不幸的是,该函数在 Chrome 17 上错误地返回 TRUE,而(如上所述),如果内联或直接从控制台调用,该语句本身可以正常工作。

其他浏览器(IE、FF)不会返回错误结果。

有人能解释一下吗?

according to
What's the best way to detect a 'touch screen' device using JavaScript?
I implemented a touch device detection using

((!!('ontouchstart' in window) ? 1 : 0) == 1)

This statement nicely returns true or false, also in the newest Chrome Browser (v17); just as stated.
To beautify my code a bit, a put this statement into a small function

function isTouchDevice() {
 return ((!!('ontouchstart' in window) ? 1 : 0) == 1);
};

Unfortunately this function falsely returns TRUE on Chrome 17, whereas (as stateted above), the statement itself works correctly, if called inline or directly from console.

Others browsers (IE, FF) do not return wrong results.

Can anybody explain?

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

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

发布评论

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

评论(1

好多鱼好多余 2025-01-13 09:36:30

我使用的是 Chrome 17,结果出现了错误。 (操作系统 X 10.7.3)

I'm on Chrome 17 and I get false. (OS X 10.7.3)

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