回答編集履歴
1
詳細追記
    
        answer	
    CHANGED
    
    | 
         @@ -1,4 +1,26 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            流れとしては
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            ページ2ボタンを確認
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
       1 
5 
     | 
    
         
             
            ```html
         
     | 
| 
      
 6 
     | 
    
         
            +
            <a href="javascript:void(0);" onclick="pagerForm(5,5,null,null); return false;">2</a>
         
     | 
| 
      
 7 
     | 
    
         
            +
            ```
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            「pagerForm」を検索
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            ```javascript
         
     | 
| 
      
 12 
     | 
    
         
            +
            //ページャー関数
         
     | 
| 
      
 13 
     | 
    
         
            +
            function pagerForm(offset, count, sort, order) {
         
     | 
| 
      
 14 
     | 
    
         
            +
                var f = document.ResultListForm;
         
     | 
| 
      
 15 
     | 
    
         
            +
                f.p_offset.value = offset;
         
     | 
| 
      
 16 
     | 
    
         
            +
                f.method.value = 'pager';
         
     | 
| 
      
 17 
     | 
    
         
            +
                f.submit();
         
     | 
| 
      
 18 
     | 
    
         
            +
            }
         
     | 
| 
      
 19 
     | 
    
         
            +
            ```
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            「ResultListForm」を検索
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            ```html
         
     | 
| 
       2 
24 
     | 
    
         
             
            <form method="post" action="index.php?action_kouhyou_pref_search_list_result=true&PrefCd=27" name="ResultListForm" id="sel_ResultListForm">
         
     | 
| 
       3 
25 
     | 
    
         
             
                <input type="hidden" name="method" value="">
         
     | 
| 
       4 
26 
     | 
    
         
             
                <input type="hidden" name="action_kouhyou_pref_search_list_result" value="true">
         
     |