html 使用选择滚动到th epage

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用选择滚动到th epage相关的知识,希望对你有一定的参考价值。

$('#item-select').on('change', function(){
	    var theAnchor = $('#'+$(this).val()).offset().top - 120;
	    $('html, body').animate({
	        scrollTop: theAnchor
	    });
	});
<select name="item-select" id="item-select">
  <option>Select Country</option>	
  <option value="1">1</option>
	<option value="2">2</option>
	<option value="3">3</option>
</select>

以上是关于html 使用选择滚动到th epage的主要内容,如果未能解决你的问题,请参考以下文章