标签: jquery anchor
我有一个iframe,我想滚动到一个特定的锚点。我没有运气 -
window.scrollTo(-37, 718);
也刚试过
function goToByScroll(id) { var new_position = getDocument().getElementById(id) $('html,body').animate({ scrollTop: new_position.offsetTop }, 'slow'); }
请帮忙。