質問編集履歴
2
ソースコードを修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -37,6 +37,16 @@
|
|
37
37
|
###ソースコード
|
38
38
|
|
39
39
|
<script language="javascript">
|
40
|
+
|
41
|
+
$(function(){
|
42
|
+
|
43
|
+
//mBaaSの初期化
|
44
|
+
|
45
|
+
var application_key = "";
|
46
|
+
|
47
|
+
var client_key = "";
|
48
|
+
|
49
|
+
var ncmb = new NCMB(application_key, client_key);
|
40
50
|
|
41
51
|
|
42
52
|
|
@@ -92,6 +102,8 @@
|
|
92
102
|
|
93
103
|
});
|
94
104
|
|
105
|
+
});
|
106
|
+
|
95
107
|
</script>
|
96
108
|
|
97
109
|
|
1
documentや;の修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
$(".btn").on("click", function actionA(){
|
46
46
|
|
47
|
-
dcument.getElementById("form").action = "./mail.html"
|
47
|
+
document.getElementById("form").action = "./mail.html";
|
48
48
|
|
49
49
|
|
50
50
|
|
@@ -84,7 +84,7 @@
|
|
84
84
|
|
85
85
|
$(".btn").on("click",function actionB(){
|
86
86
|
|
87
|
-
dcument.getElementById("form").action = "./newuser.html"
|
87
|
+
document.getElementById("form").action = "./newuser.html";
|
88
88
|
|
89
89
|
alert("新規登録フォームに移動します。");
|
90
90
|
|
@@ -117,3 +117,11 @@
|
|
117
117
|
もちろんsubmitであればなおよいですが。
|
118
118
|
|
119
119
|
ご指導、ご鞭撻のほどよろしくお願いします。
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
numb.User.loginですが、これで間違いないと思われます。
|
124
|
+
|
125
|
+
http://mb.cloud.nifty.com/doc/current/sdkguide/javascript/user.html
|
126
|
+
|
127
|
+
参考はこちらです。
|