Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 iframe,我想在其中滚动到特定的锚点。我没有运气使用 -
window.scrollTo(-37, 718);
也刚试过
function goToByScroll(id) { var new_position = getDocument().getElementById(id) $('html,body').animate({ scrollTop: new_position.offsetTop }, 'slow'); }
请帮忙。