我可以停止页面“滚动”吗?当用户单击选项卡时返回顶部(使用 Rails 而不是 Javascript)?

发布于 2024-09-03 02:53:20 字数 404 浏览 2 评论 0原文

我已经使用 Rails 构建了一个带有“选项卡”的网页。当用户单击选项卡时,会加载一个新页面。我想对其进行格式化,以便当用户单击选项卡时选项卡始终位于页面上的同一位置。只要用户没有向下滚动页面,就会发生这种情况。如果用户向下滚动,单击选项卡将刷新页面并且不再向下滚动 - 这使得单击选项卡看起来很糟糕。有没有一种方法可以在不使用 JavaScript 的情况下保留用户向下滚动的页面上的位置?如果必须用Javascript完成,有什么建议吗?
时间 替代文本 http://img.skitch.com/20100526-xtrn2ncbetj6bs1a2s4xwywfjh.png

Ive built a webpage with 'tabs' using rails. When a user clicks a tab, a new page loads. I want to format it so the tabs are always in the same place on the page as a user clicks them. This happens as long as the user has not scrolled down on the page. If a user has scrolled down, clicking on the tab will refresh the page and it is no longer scrolled down - which make clicking the tabs look bad. Is there a way to keep the spot on the page where the user has scrolled down, without using Javascript? If it must be done with Javascript, any suggestions?
T
alt text http://img.skitch.com/20100526-xtrn2ncbetj6bs1a2s4xwywfjh.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尛丟丟 2024-09-10 02:53:20

没有 JavaScript,不行。如果它们位于确切的位置,那么您就可以使用锚点 (example.html#anchor) 开始,但由于您不知道确切的位置,所以您几乎已经出局了运气。

非常抱歉!

Without Javascript, nope. If they were at an exact location, you would be good to go, using an anchor (example.html#anchor), but since you don't know the exact location, you're pretty much out of luck.

So sorry!

萌梦深 2024-09-10 02:53:20

你可以做到,但你需要少量的 Javascript 和一些 CSS 隐藏。

假设这些是您的选项卡:

<ul id="nav">
  <li class="tab"><a href="#content1">Content 1</a></li>
  <li class="tab"><a href="#content2">Content 2</a></li>
</ul>

假设这是您的内容:

<div id="content" class="content1">
  <div id="content1">
    <h1>Some content</h1>
    <p>This is my content.</p>
  </div>

  <div id="content2">
    <h1>More content</h1>
    <p>This is my other content.</p>
  </div>
</div>

那么您需要做什么,我正在使用 Ext.Core 库,是:

<script type="text/javascript">
Ext.onReady(function() {
  Ext.select('.tab a').on('click', function(ev, el) {
    ev.stopEvent();
    var content_id = el.href.replace('#', '');
    Ext.get('content').removeClass(['content1', 'content2', ...]).addClass(content_id);
  });
});
</script>

你还需要一点 CSS,如下所示:

#content.content2 #content1,
#content.content1 #content2 {
  display:none;
} 

这隐藏了我们不看的其他内容。我们在内容容器上设置一个名为 contentN 的类,它是该选项卡链接的 href。因此,如果我们有一个带有 href="#content1" 的选项卡,那么我们将一个名为 content1 的类添加到内容容器中,现在内容是可见的,而其他内容则不可见。

Ext.Core 示例页面有另一种方法,它们有一个 示例显示其工作原理。他们的方式比这更复杂。

You can do it but you will need a small amount of Javascript and some CSS hiding.

Suppose these are your tabs:

<ul id="nav">
  <li class="tab"><a href="#content1">Content 1</a></li>
  <li class="tab"><a href="#content2">Content 2</a></li>
</ul>

And suppose this is your content:

<div id="content" class="content1">
  <div id="content1">
    <h1>Some content</h1>
    <p>This is my content.</p>
  </div>

  <div id="content2">
    <h1>More content</h1>
    <p>This is my other content.</p>
  </div>
</div>

What you would need to do then, and I am demonstrating using the Ext.Core library, is:

<script type="text/javascript">
Ext.onReady(function() {
  Ext.select('.tab a').on('click', function(ev, el) {
    ev.stopEvent();
    var content_id = el.href.replace('#', '');
    Ext.get('content').removeClass(['content1', 'content2', ...]).addClass(content_id);
  });
});
</script>

You also need a little CSS like so:

#content.content2 #content1,
#content.content1 #content2 {
  display:none;
} 

This hides the other content we are not looking at. We set a class on the content container called contentN which is the href of the link for that tab. So if we have a tab with href="#content1" then we add a class to the content container called content1 and now that content is visible and other content is not.

The Ext.Core samples page has another way of doing it, and they have an example up showing it working. Their way is more involved than this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文