标签:
$(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();
        
     })
标签:
原文地址:http://www.cnblogs.com/lichuntian/p/4334760.html