我在 iPad 上有一个页面,但在实现等效的鼠标移出行为时遇到了一些问题。
所以我有:
下面是我写的代码;
$(document).bind("touchstart",function(e){
if(e.target.id != "checkbox_err")
$("span#checkbox_err").fadeOut("slow");
});
}
$("input:checkbox").bind("touchstart",function(){
$("span#checkbox_err").fadeIn("fast");
});
现在的问题是,当我单击/触摸复选框时,errorMsg 会显示一段时间,然后它也会立即将其隐藏(因为目标不是 errorMsg)
我该如何解决这个问题?
据我所知,没有必要实现触摸事件来实现您想要的。您可以使用常见的点击事件。它将被设备的浏览器模拟。
关于javascript - iPad Javascript/jQuery touchstart 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7010333/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |