要使用锚标记移动到页面的特定部分...请阅读说明
我使用以下代码移动到页面的这一部分:
.
.
.<a title="news" name="news"></a>
.
.
但是当我使用以下 URL 从另一个页面访问或重定向到此页面时: http://localhost/mypage.aspx#news,页面转到该部分并再次出现在页面顶部,自动将 URL 更改为http://localhost/mypage.aspx#。
我的代码中没有关于页面加载的手动编写的 JavaScript。该代码确实使用了 AJAX、UpdatePanel 等。
其他可能的原因是什么? 任何帮助表示赞赏。
I'm using the following code to move to this part of the page:
.
.
.<a title="news" name="news"></a>
.
.
But when I access or REDIRECTS from another page to this page using the URL like: http://localhost/mypage.aspx#news, the page goes to that part and again comes at the top of the page automatically changing the URL to http://localhost/mypage.aspx#.
There is no manually written javascript on page load in my code. The code does uses AJAX, UpdatePanel etc.
What could be the other possible reasons?
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你确定没有javascript吗?您已经标记了问题
asp.net
- 也许框架向呈现的页面添加了一些 javascript?如果
MaintainScrollPositionOnPostback
指令在页面上设置,它可能会导致问题中描述的行为。这个属性是在页面上设置的吗?或者也许在母版页上?Are you absolutely sure there is no javascript? You've tagged the question
asp.net
- maybe the framework adds some javascript to the rendered page?If the
MaintainScrollPositionOnPostback
directive is set on the page, it might cause the behavior described in the question. Is this property set on the page? Or maybe on a master page?