如何在 jQuery 脚本中设置正确的路径?

发布于 2024-09-10 14:57:20 字数 263 浏览 4 评论 0原文

亲爱的...我一直在另一台电脑上创建我的网站。现在我想将所有 PHP 和 jQuery 文件复制到我的笔记本中...但所有 jQuery 小部件都没有显示。如何在脚本中输入正确的地址?

<link href="js/jquery.ui.all.css" rel=.....>

这些文件位于:

local disc(c:)/xampp/htdocs/js/jquery.ui.all

Dear all... I've been creating my website on another PC. Now I want to copy all PHP and jQuery files to my notebook... but all jQuery widgets does not show. How do I put the correct address in my script??

<link href="js/jquery.ui.all.css" rel=.....>

The files are at:

local disc(c:)/xampp/htdocs/js/jquery.ui.all

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

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

发布评论

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

评论(1

如梦初醒的夏天 2024-09-17 14:57:20

由于它位于 Web 根目录下,因此只需在路径前添加 / 即可使其成为绝对路径,如下所示:

<link href="/js/jquery.ui.all.css" rel=.....>

然后您放置一个不完全限定或绝对的路径,它相对于页面< /em>,因此例如您当前的 也只能在根文件夹中的页面上工作,例如:

 /xampp/htdocs/page.html

使用绝对值,页面的深度并不重要,无论页面路径如何,它都会像这样寻找:

http://www.mysite.com/js/jquery.ui.all.css

Since it's under the web root, just add a / before the path to make it absolute, like this:

<link href="/js/jquery.ui.all.css" rel=.....>

Then you put a path that's not fully qualified or absolute, it's relative to the page, so for example your current <link> would only work on a page in the root folder as well, for example:

 /xampp/htdocs/page.html

With it absolute, it won't matter how deep the page is, it's looking for like this, regardless of the page path:

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