function receiveGift() { $('#mui-backdrop1').hide(); $('#mui-backdrop2').hide(); var checkedCars = ""; var checkedGifts = "" var radios = $("input[type=radio]:checked"); if (radios.length == 0) { mui.toast('请选择礼包'); return false; } radios.each(function() { var giftId = $(this).val(); if (checkedGifts == "") { checkedGifts = giftId; } else { checkedGifts += "," + giftId; } }) mui.ajax(contextRootPath + '/weixin/receiveGiftMoren.do', { data : { "user_code" : user_code, "marketingcodes" : JSON.stringify(marketingcodes), "checkedGifts" : checkedGifts, }, dataType : 'json', type : 'POST', timeout : 30000, success : function(data) { }, error : function(xhr, type, errorThrown) {} }); }
安卓5.1版本web页面对一个div进行两次hide(),会不会报错?客户反馈安卓5.1版本web页面有一个onclick事件突然失效,找不到原因。唯一感觉有问题的地方就是对同一个div进行了两次hide。 目前也没有对应的机型进行测试。
2019-11-08