$('#Del').on('tap', '.mui-btn', function(event) {
var elem = this;
var li = elem.parentNode.parentNode;
mui.confirm('不要人家了嘛?', '小主', btnArray, function(e) {
if(e.index==0){
gid=li.childNodes.item(0).childNodes.item(0).innerText;
$.ajax({
type: 'GET',
url: localStorage.HDWURL + "/cartlistdel/" +localStorage.EmployeeID+"/"+gid,
cache: false,
dataType: "json",
timeout: 3000,
error: function( data) {
plus.nativeUI.alert(data);
},
success: function(data) {
if (data != "") {
//plus.nativeUI.alert(data);
// // LoadData(eval("(" + data + ")"));
if(data=="删除成功")
{
//plus.nativeUI.alert("删除成功");
li.parentNode.removeChild(li);
}
}
else
{
plus.nativeUI.alert("删除失败");
}
}
});
$.swipeoutClose(li);
}
else {
setTimeout(function() {
$.swipeoutClose(li);
}, 0);
}
});
});
var btnArray = ['确认', '取消'];
2***@qq.com (作者)
不好意思哈,我还真不知道,我是小白
2016-04-26 08:45