jQuery tabs() 函数不显示选项卡

发布于 2024-10-13 18:20:57 字数 1121 浏览 7 评论 0原文

以下是我用于创建选项卡式页面的 HTML 代码。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <script type="text/javascript" src="jquery.js"></script>
  <script type="text/javascript" src="jquery-ui-1.8.9.custom.min.js"></script>
  <title>Testing Tabs</title>
</head>
<body>
  <div id="tabs">
    <ul>
        <li><a href="#panel1">Panel 1</a></li>
        <li><a href="#panel2">Panel 2</a></li>
        <li><a href="#panel3">Panel 3</a></li>
    </ul>
    <div id="panel1">
        <p>This is the text of panel 1</p>
    </div>
    <div id="panel2">
        <p>This is the text of panel 2</p>
    </div>
    <div id="panel3">
        <p>This is the text of panel 3</p>
    </div>
  </div>
</body>

当我在 Firebug 命令行上执行命令 $('#tabs').tabs() (或 $('#tabs').tabs({})) 时,实际上没有任何反应,即链接仍然是链接,并且所有 div显示。

The following is my HTML code for creating a tabbed page.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <script type="text/javascript" src="jquery.js"></script>
  <script type="text/javascript" src="jquery-ui-1.8.9.custom.min.js"></script>
  <title>Testing Tabs</title>
</head>
<body>
  <div id="tabs">
    <ul>
        <li><a href="#panel1">Panel 1</a></li>
        <li><a href="#panel2">Panel 2</a></li>
        <li><a href="#panel3">Panel 3</a></li>
    </ul>
    <div id="panel1">
        <p>This is the text of panel 1</p>
    </div>
    <div id="panel2">
        <p>This is the text of panel 2</p>
    </div>
    <div id="panel3">
        <p>This is the text of panel 3</p>
    </div>
  </div>
</body>

When I execute the command $('#tabs').tabs() (or $('#tabs').tabs({})) at the Firebug CommandLine, nothing really happens i.e. the links remain links, and all the divs are displayed.

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

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

发布评论

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

评论(1

乞讨 2024-10-20 18:20:57

确保还包含 jQueryUI 样式表。

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/ui-lightness/jquery-ui.css" />

示例: http://jsfiddle.net/6kg7k/

Make sure you include the jQueryUI stylesheet as well.

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/ui-lightness/jquery-ui.css" />

Example: http://jsfiddle.net/6kg7k/

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