jeter20131220 3 年 前
コミット
92ca55f9e8
1 ファイル変更5 行追加5 行削除
  1. 5 5
      desktop11/goto.js

+ 5 - 5
desktop11/goto.js

@@ -96,18 +96,18 @@ function onClik() {
     url:'http://172.105.205.52:8001/deco_request_detail',
     data: jsonString,
     dataType: 'json',
- 
+    success: function (data, textStatus, jqXHR) {
+
+      alert("送出成功");
+    },
     beforeSend: function () {
       alert("beforeSend");
     },
     complete: function () {
       alert("complete");
     },
-    success: function (data, textStatus, jqXHR) {
 
-      alert("送出成功");
-    },
-    error: function (jqXHR, textStatus, errorThrown) {
+    error: function (XMLHttpRequest, textStatus, errorThrown) {
       alert("送出失敗");
 
     }