gpt4 book ai didi

google-chrome - Chrome "Emulate Touch Events"无法正常工作

转载 作者:行者123 更新时间:2023-12-04 05:08:02 26 4
gpt4 key购买 nike

我已经启用了Chrome开发人员工具中的“模拟触摸事件”选项。我设置了一个简单的测试程序,当我触摸<div>时会发出警报。该程序可以在我的Galaxy Nexus上正常运行,但是当我在Chrome中单击<div>时,即使启用了“模拟触摸事件”选项,也不会发生任何事情。有什么建议么?我是否正确使用此工具?

这是我的代码-没什么花哨的。

<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
#main_div
{
position: absolute;
width: 50px;
height: 20px;
background-color: red;
top: 50%;
left: 20px;
}
</style>
<script type="text/javascript">
function init()
{
main_div = document.getElementById("main_div");
main_div.ontouchstart = function()
{
alert("here");
}
}
</script>
</head>
<body onload="init()">
<div>
<p id="x">hello</p>
<p id="y"></p>
</div>
<div id="main_div">
hello
</div>
</body>
</html>

最佳答案

让我感到困扰的是,除了选中“模拟触摸事件”复选框外,还必须选中主“启用”复选框以启用替代功能。一旦两者都被检查,它就可以正常工作。

关于google-chrome - Chrome "Emulate Touch Events"无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11025081/

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