上拉加载后的数据点击事件无效,在安卓上面正常,在ios下无反应,绑定上拉的区域 还有输入框点击无反应,好像有个层遮住了绑定区域的元素
- 发布:2016-03-03 12:29
- 更新:2016-10-31 14:57
- 阅读:2503
同求,我在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>
$("#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));
}
ecode (作者)
跟ios版本有问题吗,9.2.1
2016-03-03 12:35