我在 iPad 上有一个页面,但在实现等效的鼠标移出行为时遇到了一些问题。
所以我有:
- 在我的页面上,点击(或者更确切地说是触摸)有一个复选框,我想显示一个 errorMsg
- 点击/触摸除 errorMsg 以外的任何内容时,我想隐藏 errorMsg
下面是我写的代码;
$(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)
我该如何解决这个问题?
Best Answer-推荐答案 strong>
据我所知,没有必要实现触摸事件来实现您想要的。您可以使用常见的点击事件。它将被设备的浏览器模拟。
关于javascript - iPad Javascript/jQuery touchstart 问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7010333/
|