私はHTTPClientとJsoupを使用してURLを取得し、ページをナビゲートします。私は1つのリンクがページングによって制御される3または4ページを持つシナリオを持っています。各番号の送信、アクションの通知、URLの変更、ナビゲーションの完了。メインページからこのURLを取得するにはどうすればよいですか?ページネーションURLを取得する方法
これは私のページネーションは、UI
<div class="pagination">
<div class="label">Page: </div>
<div class="button selected" onclick="$('.page-position', $(this).closest('form')).attr('value', $(this).html()); $(this).closest('form').submit();">1</div>
<div class="button " onclick="$('.page-position', $(this).closest('form')).attr('value', $(this).html()); $(this).closest('form').submit();">2</div>
<div class="button " onclick="$('.page-position', $(this).closest('form')).attr('value', $(this).html()); $(this).closest('form').submit();">3</div>
<div class="button" onclick="$('.page-position', $(this).closest('form')).attr('value', 2);$(this).closest('form').submit();">Next</div>
</div>
文書の改ページ方法はわかりません。 Downvoted。 – Mikhail