我想知道我是否可以得到一些帮助。我想要实现的是这个。
一旦从一个选项中选中,页面应该跳转到相应的 div。我可以发出警报以确保选择了正确的 div,但我不知道如何使页面跳转到相关部分
<div class="nav">
<div class="top-nav">
<form action="#">
<select>
<option value="ten">10</option>
<option value="twenty">20</option>
<option value="thirty">30</option>
</select>
</form>
</div>
</div>
<div class="area">
<div id="ten">Alot of content goes in here</div>
<div id="twenty">Alot of content goes in here</div>
<div id="thirty">Alot of content goes in here</div>
</div>
$('.top-nav').children().children('select').bind('change', function () {
alert($('#' + $(this).val()).html());
});