gpt4 book ai didi

javascript - 如何在 Internet Explorer 11 上检测 Windows 8.1 中的触摸屏?

转载 作者:行者123 更新时间:2023-11-29 18:11:21 25 4
gpt4 key购买 nike

我一直在尝试根据我的项目要求在 IE 10/11 上检测 Windows 8.1 中的触摸屏......

我已经尝试使用 Modernizer.touch,但它在 IE(触摸屏)上变得错误。

最佳答案

你可以使用 navigator 吗?

function is_touch_device() {
return (('ontouchstart' in window)
|| (navigator.MaxTouchPoints > 0)
|| (navigator.msMaxTouchPoints > 0));
}

if (is_touch_device()) {
alert("Yay! Its touch");
}else{
alert("Not touch!")
}

完整来源:http://ctrlq.org/code/19616-detect-touch-screen-javascript

关于javascript - 如何在 Internet Explorer 11 上检测 Windows 8.1 中的触摸屏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27104178/

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