iPad上的jQuery mouseout问题

时间:2011-08-10 07:31:00

标签: javascript jquery iphone ipad safari

  

可能重复:
  jQuery mouseout on iPad

我在iPad上测试一个页面,并且面临一些实现鼠标操作行为的问题。

所以问题很容易理解;  1.在我的页面上,点击(或者更确切地说是触摸)有一个复选框,我想显示一个errorMsg  2.单击/触摸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)

如何解决此问题?

0 个答案:

没有答案