单击 Yansdesign 选项卡式菜单后加载内容

发布于 2024-08-03 00:13:30 字数 258 浏览 9 评论 0原文

我用过这个教程: http://yensdesign.com/2008/12 /create-a-smooth-tabbed-menu-in-jquery/

它是 Yansdesign 选项卡式菜单。有人可以告诉我如何更改代码以在单击此选项卡后加载特定选项卡的内容吗?

I've used this tutorial:
http://yensdesign.com/2008/12/create-a-smooth-tabbed-menu-in-jquery/

it is yensdesign tabbed menu. Could sb tell me how do I have to change the code to load content of particular tab after clicking on this tab?

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

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

发布评论

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

评论(1

无悔心 2024-08-10 00:13:30

使用 js 时,您希望将每种情况更改为以下内容:

case 'news':
  $('#news').load('/fetch-content?tab=news', function() {
    $("#news").addClass("active");
    $("#tutorials").removeClass("active");
    // .. etc ..
  });

有负载对此的变化 - 也许您希望在加载内容之前使选项卡处于活动状态,以便立即向用户提供反馈,以防您的服务器需要几秒钟的时间来响应。

此外,tabs.js 文件中的 addClass/removeClass 内容也不能很好地扩展。最好选择所有 div,然后过滤掉您不感兴趣的 div,例如:(

$('#tabs > div').filter(':not(#news)').removeClass('active');

无论如何)

Working with the js, you want to change each case to something like:

case 'news':
  $('#news').load('/fetch-content?tab=news', function() {
    $("#news").addClass("active");
    $("#tutorials").removeClass("active");
    // .. etc ..
  });

There are loads of variations on this - maybe you want to make the tab active before loading the content go give the user immediate feedback in case your server takes a few seconds to respond.

Also, the addClass/removeClass stuff in the tabs.js file doesn't scale too well. It'd be better to select all divs, then filter out the ones you're not interested in, e.g.:

$('#tabs > div').filter(':not(#news)').removeClass('active');

(something like that anyway)

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