我在窗口中有一个与'ontouchstart'相关的问题。
我有这个代码
$( window ).resize(function() {
if('ontouchstart' in window){
console.log("resize touch true")
}else{
console.log("resize touch false")
}
})
与Chrome合作。我加载页面,我得到“调整大小错误”。 现在将浏览器设置为iphone6,然后加载页面。现在结果是真实的。一切都在这里。
但是,当我开始使用iphone(log touch true)并切换到桌面时,我仍然会“触摸真实”,反之亦然。
我必须重新加载页面才能获得正确的结果。
问题:如果不重新加载页面,我能获得正确的结果吗?