码迷,mamicode.com
首页 > 移动开发 > 详细

ios系统下的QQ浏览器jquert的BUG

时间:2015-03-13 13:58:41      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

$(document).bind("click", function(e){
    var $t = $(e.target);
    alert(333);
    if($t.is("p") && ($t.hasClass("help") || $t.hasClass("error"))){
        $t.hide();
        $t.siblings("input").focus();
    }

上面这段代码在QQ浏览器ios版下P标签的元素没有绑定到事件,不触发alert(333);

只能用下面的click处理事件代替了。

 

 $(".help,.error").click(
         function(){
             $(this).hide();
             $(this).prev(".input_txt").focus();
        
     })

 

ios系统下的QQ浏览器jquert的BUG

标签:

原文地址:http://www.cnblogs.com/lichuntian/p/4334760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!