回答編集履歴

1

詳細追記

2018/12/14 15:12

投稿

barobaro
barobaro

スコア1286

test CHANGED
@@ -1,3 +1,47 @@
1
+ 流れとしては
2
+
3
+
4
+
5
+ ページ2ボタンを確認
6
+
7
+
8
+
9
+ ```html
10
+
11
+ <a href="javascript:void(0);" onclick="pagerForm(5,5,null,null); return false;">2</a>
12
+
13
+ ```
14
+
15
+
16
+
17
+ 「pagerForm」を検索
18
+
19
+
20
+
21
+ ```javascript
22
+
23
+ //ページャー関数
24
+
25
+ function pagerForm(offset, count, sort, order) {
26
+
27
+ var f = document.ResultListForm;
28
+
29
+ f.p_offset.value = offset;
30
+
31
+ f.method.value = 'pager';
32
+
33
+ f.submit();
34
+
35
+ }
36
+
37
+ ```
38
+
39
+
40
+
41
+ 「ResultListForm」を検索
42
+
43
+
44
+
1
45
  ```html
2
46
 
3
47
  <form method="post" action="index.php?action_kouhyou_pref_search_list_result=true&amp;PrefCd=27" name="ResultListForm" id="sel_ResultListForm">