从 jquery 站点加载 jquery-ui-1.7.2.custom.min

发布于 2024-08-06 17:49:04 字数 230 浏览 4 评论 0原文

任何人都可以知道从 j query 站点加载 jquery-ui-1.7.2.custom.min 的链接,例如

  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>. 

jquery 选项卡所需的所有 .js 文件是什么。

Can anyone know the link for loading jquery-ui-1.7.2.custom.min from j query site like

  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>. 

what are all the .js files needed for jquery tab.

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

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

发布评论

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

评论(2

英雄似剑 2024-08-13 17:49:04

您可以使用 google api 加载 jquery:

<script src="http://www.google.com/jsapi"></script>
<script>
   google.load("jquery", "1.3.2");
   google.load("jqueryui", "1.7.2");
</script>

You may use google api to load jquery:

<script src="http://www.google.com/jsapi"></script>
<script>
   google.load("jquery", "1.3.2");
   google.load("jqueryui", "1.7.2");
</script>
请远离我 2024-08-13 17:49:04

您需要确保在自定义构建中包含选项卡脚本。为此,请转至 http://jqueryui.com/download 并勾选“选项卡”复选框。

这将输出一个包含图像、css 和 js 文件的 zip 文件。

接下来,附加自定义 jQuery UI 文件以及 jQuery 文件和相关 CSS 文件。

然后访问 http://jqueryui.com/demos/tabs/ 并查看其源代码演示(单击“查看源代码”)。它将为您提供创建选项卡所需的标记。

You need to make sure that you include the tabs script with your custom build. To do this go to http://jqueryui.com/download and tick the 'tabs' checkbox.

This will out put a zip file containing images, css and js files.

Next, attach the custom jQuery UI file, aswell as the jQuery file and the relevant CSS files.

Then visit http://jqueryui.com/demos/tabs/ and check out the source for that demo (click 'view source'). It'll give you the mark up needed to create the tabs.

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