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.
我正在用 ASP 开发一个网站。网。当我从任何组件回发时,首先加载页面,然后设置滚动的位置。问题是:如何在页面加载之前设置滚动?
问候!
我认为您需要将控件放在< asp:UpdatePanel >中并执行异步回发。
您可以为此使用 jquery。就像是:
$(document).ready(function() { $(#id).scrollTop(100); });