回答編集履歴

1

test

2019/11/01 02:45

投稿

yambejp
yambejp

スコア114883

test CHANGED
@@ -7,3 +7,21 @@
7
7
  ページ遷移が必須なら、姑息ですがhashやsearchに付加してしまうとか
8
8
 
9
9
  無理やりやることはできます
10
+
11
+
12
+
13
+ # hash,search
14
+
15
+ ```javascript
16
+
17
+ <script>
18
+
19
+ console.log(location.search);
20
+
21
+ console.log(location.hash);
22
+
23
+ </script>
24
+
25
+ <a href="?data=123465789#abcdef">test</a>
26
+
27
+ ```