//js定位方式1 document.getElementById('id').scrollIntoView(); //jquery定位方式2 var t = $('#id').offset().top; 3 $(window).scrollTop(t);