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.
是否可以使脚本滚动到上一页的顶部?现在脚本返回到上一页,并在链接所在的正文中间。
$(document).ready(function(){ $('a.back').click(function(){ parent.history.back(); return false; }); });
如果您在谈论任何页面,即使在您的网站/应用程序之外,也是不可能的。
由于您无法控制上一页,因此您无法在那里运行任何代码。添加#top或哈希然后返回该页面将不起作用。
#top
如果我们只在您控制的网站内谈论,当然您可以使用 JS 来控制它。