如何在 jQuery 脚本中设置正确的路径?
亲爱的...我一直在另一台电脑上创建我的网站。现在我想将所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于它位于 Web 根目录下,因此只需在路径前添加
/
即可使其成为绝对路径,如下所示:然后您放置一个不完全限定或绝对的路径,它相对于页面< /em>,因此例如您当前的
也只能在根文件夹中的页面上工作,例如:
使用绝对值,页面的深度并不重要,无论页面路径如何,它都会像这样寻找:
Since it's under the web root, just add a
/
before the path to make it absolute, like this: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:With it absolute, it won't matter how deep the page is, it's looking for like this, regardless of the page path: