回答編集履歴

1

chousei

2019/10/04 03:49

投稿

yambejp
yambejp

スコア116694

test CHANGED
@@ -5,3 +5,53 @@
5
5
  httpサーバー上で処理をしていないようなのでまずはそのへんの
6
6
 
7
7
  環境を整えるところから始めてください
8
+
9
+
10
+
11
+ # sample
12
+
13
+ こんな感じで
14
+
15
+ ```javascript
16
+
17
+ <script>
18
+
19
+ const getUrlVars=()=>{
20
+
21
+ const vars = [];
22
+
23
+ const search=location.search.substr(1);
24
+
25
+ const hashes = search==""?[]:search.split('&');
26
+
27
+ hashes.forEach(x=>{
28
+
29
+ var hash = x.split('=');
30
+
31
+ vars.push([hash[0],decodeURIComponent(hash[1])]);
32
+
33
+ });
34
+
35
+ return vars;
36
+
37
+ };
38
+
39
+ $(function(){
40
+
41
+ var vars=getUrlVars();
42
+
43
+ vars.forEach(x=>{
44
+
45
+ $('.wrap').append(`<div class="${x[0]}">${x[1]}</div><br>`);
46
+
47
+ });
48
+
49
+ });
50
+
51
+ </script>
52
+
53
+ <a href="?sei=macbookpro&mei=apple&sei=dynabook&mei=toshiba">click here</a>
54
+
55
+ <div class="wrap"></div>
56
+
57
+ ```