触摸屏检测:Chrome 17
根据 检测“的最佳方法是什么”使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用的是 Chrome 17,结果出现了错误。 (操作系统 X 10.7.3)
I'm on Chrome 17 and I get false. (OS X 10.7.3)