ecode
ecode
  • 发布:2016-03-03 12:29
  • 更新:2016-10-31 14:57
  • 阅读:2503

上拉加载后的数据点击事件无效

分类:MUI

上拉加载后的数据点击事件无效,在安卓上面正常,在ios下无反应,绑定上拉的区域 还有输入框点击无反应,好像有个层遮住了绑定区域的元素

2016-03-03 12:29 负责人:无 分享
已邀请:
cups_book

cups_book

你iOS 什么版本啊?

  • ecode (作者)

    跟ios版本有问题吗,9.2.1

    2016-03-03 12:35

六月

六月

同求,我在web端也遇到这样的问题了,我的item数据是动态加载的,删掉scroll之后就能点击了
<div id="pullrefresh" class="mui-scroll-wrapper" >
<div class="mui-scroll">
<ul class="mui-table-view-chevron mui-media-body u-refreshHospital">
<jsp:include page="/pages/appointment/chooseHospitalItem.jsp"></jsp:include>
</ul>
</div>
</div>

DCloud_UNI_FXY

DCloud_UNI_FXY

scroll内建议使用tap事件

  • 六月

    已解决,谢谢

    2016-03-03 16:00

  • 1***@qq.com

    回复 六月:请问怎么解决 我也是加载数据后 不能点击进入详细页?

    2016-07-21 15:49

7***@qq.com

7***@qq.com

同求急啊,请问解决了吗

大咕雕

大咕雕

$("#cp"+a).on("tap",function(a){
return function () {
var xgt_id = $(this).attr("xgtid");
<?php if(empty($_SESSION['member_system_id'])){ ?>
$.confirm('用户未登录,马上去?', function () {
window.location.href = "<?php echo get_fwy_url('login');?>";
});
return;
<?php }?>
$.ajax({
url:"<?php echo SHOP_SITE_URL;?>/index.php?fun=member_favorites&tg=xgt_cp",
type:"post",
dataType:"json",
data:{xgt_id:xgt_id,lx:lx},
success:function (result){
//只有差评
if(result.datas==1){
$("#cp"+a).toggleClass("highlight");
$("#cp_em"+a).html(parseInt($("#cp_em"+a).html())+1);
}
//在有差评的情况下差评
if(result.datas=="2"){
$("#cp"+a).toggleClass("highlight");
$("#cp_em"+a).html(parseInt($("#cp_em"+a).html())+1);
$("#dz"+a).toggleClass("highlight");
$("#dz_em"+a).html(parseInt($("#dz_em"+a).html())-1);
if($("#dz_em"+a).text()<=0){
$("#dz_em"+a).html(0);
}
}
//取消咯~
if(result.datas=="3"){
$("#cp"+a).toggleClass("highlight");
$("#cp_em"+a).html(parseInt($("#cp_em"+a).html())-1);
if($("#cp_em"+a).text()<=0){
$("#cp_em"+a).html(0);
}
}
}
});
};
}(a));
}

大咕雕

大咕雕

$("#cp"+a).on("tap",function(a){  
                                        return function () {  
                                            var xgt_id = $(this).attr("xgtid");  
                                            <?php if(empty($_SESSION['member_system_id'])){ ?>  
                                                $.confirm('用户未登录,马上去?', function () {  
                                                    window.location.href = "<?php echo get_fwy_url('login');?>";  
                                                });  
                                                return;  
                                            <?php }?>  
                                            $.ajax({  
                                                url:"<?php echo SHOP_SITE_URL;?>/index.php?fun=member_favorites&tg=xgt_cp",  
                                                    type:"post",  
                                                    dataType:"json",  
                                                    data:{xgt_id:xgt_id,lx:lx},  
                                                    success:function (result){  
                                                        //只有差评  
                                                        if(result.datas==1){  
                                                            $("#cp"+a).toggleClass("highlight");  
                                                            $("#cp_em"+a).html(parseInt($("#cp_em"+a).html())+1);  
                                                        }  
                                                        //在有差评的情况下差评  
                                                        if(result.datas=="2"){  
                                                            $("#cp"+a).toggleClass("highlight");  
                                                            $("#cp_em"+a).html(parseInt($("#cp_em"+a).html())+1);  
                                                            $("#dz"+a).toggleClass("highlight");  
                                                            $("#dz_em"+a).html(parseInt($("#dz_em"+a).html())-1);  
                                                            if($("#dz_em"+a).text()<=0){  
                                                                $("#dz_em"+a).html(0);  
                                                            }  
                                                        }  
                                                        //取消咯~  
                                                        if(result.datas=="3"){  
                                                            $("#cp"+a).toggleClass("highlight");  
                                                            $("#cp_em"+a).html(parseInt($("#cp_em"+a).html())-1);  
                                                            if($("#cp_em"+a).text()<=0){  
                                                                $("#cp_em"+a).html(0);  
                                                            }  
                                                        }  
                                                    }  
                                            });  
                                        };  
                                    }(a));  
                                }

该问题目前已经被锁定, 无法添加新回复