次の選択ボックスがあります。
<select id="selectBox" >
<option value="section01">section01</option>
<option value="section02">section02</option>
<option value="section03">section03</option>
</select>
そして、ページには次のセクションがあります。
<div class="page" id="section01">
Some text here
</div>
<div class="page" id="section02">
Some text here
</div>
<div class="page" id="section03">
More text here
</div>
私がやりたいことは、ユーザーにスクロール ボックスから何かを選択させ、ページを適切なセクションに自動的にスクロールさせることです。
jquery の scrollTo() メソッドを使用できると仮定していますが、選択ボックスでオプション値を取得する方法がわかりません。次に、実際に Web ページを適切な DIV セクションに移動します。