質問編集履歴

1

htmlを修正しました

2020/06/20 13:04

投稿

mikeko0901
mikeko0901

スコア227

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,3 @@
1
- jquery初心者です。。
2
-
3
1
  関数で取得した値を、returnで返し、関数の外で使用したいです。
4
2
 
5
3
  そして、別のページにpostで渡したいです。しかしうまく行きません…
@@ -62,7 +60,7 @@
62
60
 
63
61
  </div>
64
62
 
65
-
63
+
66
64
 
67
65
  <div>
68
66
 
@@ -98,37 +96,39 @@
98
96
 
99
97
  </div>
100
98
 
101
-
99
+
102
100
 
103
101
  </div>
104
102
 
103
+ </div>
104
+
105
105
 
106
106
 
107
107
  <footer class="text-center pt-1 pb-1 small fixed-bottom">
108
108
 
109
- 省略
109
+ 省略
110
110
 
111
111
  </footer>
112
112
 
113
-
114
-
115
-
113
+
114
+
115
+
116
116
 
117
117
  <!-- liff用scriptを読み込む -->
118
118
 
119
119
  <script src="https://static.line-scdn.net/liff/edge/2/sdk.js"></script>
120
120
 
121
- <!--<script src="../style/liff.js"></script> -->
121
+ <!--<script src="../style/liff.js"></script> -->
122
-
122
+
123
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
123
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
124
-
124
+
125
- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
125
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
126
-
127
-
128
-
126
+
127
+
128
+
129
- <script>
129
+ <script>
130
-
130
+
131
- function getProfile(){
131
+ function getProfile(){
132
132
 
133
133
  // https://developers.line.me/ja/reference/liff/#liffgetprofile()
134
134
 
@@ -142,23 +142,23 @@
142
142
 
143
143
  obj.userName = profile.displayName;
144
144
 
145
-
145
+
146
146
 
147
147
  alert ("★getProfile中のalert" + obj.userId);
148
148
 
149
-
149
+
150
150
 
151
151
  return obj;
152
152
 
153
153
  });
154
154
 
155
-
155
+
156
156
 
157
157
  return obj2;
158
158
 
159
159
  }
160
160
 
161
-
161
+
162
162
 
163
163
 
164
164
 
@@ -182,9 +182,9 @@
182
182
 
183
183
  }
184
184
 
185
-
186
-
185
+
186
+
187
- window.addEventListener('load', function() {
187
+ window.addEventListener('load', function() {
188
188
 
189
189
  //初期化
190
190
 
@@ -196,21 +196,21 @@
196
196
 
197
197
  displayLiffData();
198
198
 
199
-
199
+
200
200
 
201
201
  });
202
202
 
203
203
  })
204
204
 
205
-
206
-
207
-
205
+
206
+
207
+
208
208
 
209
209
  //できない
210
210
 
211
211
  $('button').click(function() {
212
212
 
213
-
213
+
214
214
 
215
215
  var obj = getProfile();
216
216
 
@@ -222,17 +222,17 @@
222
222
 
223
223
  $('form').submit(); //formタグを指定
224
224
 
225
-
225
+
226
226
 
227
227
  })
228
228
 
229
-
230
-
231
-
232
-
233
-
234
-
229
+
230
+
231
+
232
+
233
+
234
+
235
- </script>
235
+ </script>
236
236
 
237
237
  <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
238
238
 
@@ -240,9 +240,7 @@
240
240
 
241
241
  <script defer src="https://use.fontawesome.com/releases/v5.2.0/js/all.js"></script>
242
242
 
243
- </div>
243
+
244
-
245
- </div>
246
244
 
247
245
  </body>
248
246