- 注册时间
- 2013-6-8
- 最后登录
- 2014-3-4
- 阅读权限
- 10
- 积分
- 707
- 精华
- 0
- 帖子
- 218
|
factory 发表于 2013-7-18 13:07
你调试看下,具体代码执行到了吗?
恩,代码执行到了。alert已执行到,但是取消排序没有作用
$.ajax({
url : "../common/dragSort.htm",
data : {
data : json
},
type : "post",
success : function(text) {
if (text.rescode == 0) {
} else {
mini.alert(text.msg);
e.cancel = true;
}
},
error : function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
}); |
|