jQuery isn#39;t functioning on different webhost(jQuery 在不同的虚拟主机上不起作用)
问题描述
我刚刚完成了一个网站 &去上传它到客户的主机,这是我用于我的个人网站的同一台主机.当我将网站作为附加组件上传到他的域时测试了jQuery函数,它没有运行.我正在通过以下方式从 Google 加载 jQuery:
I just finished a website & went to upload it to the client's host, which is the same host that I use for my personal site. When I uploaded the site to his domain as an add on & tested the jQuery function, it doesn't run. I'm loading jQuery from Google via:
<!--/ jQuery Inclusion-->
<script src="aHR0cDovL2FqYXguZ29vZ2xlYXBpcy5jb20vYWpheC9saWJzL2pxdWVyeS8xLjcuMi9qcXVlcnkubWluLmpz" type="text/javascript"></script>
它在我的个人主机设置上完美运行,只是在新主机上根本无法运行.我打电话给 &没有得到技术支持的解决,希望你们能帮助我.
And it runs perfectly on my personal host setup, it just doesn't work at all on the new host. I called & got no resolve from tech support, was hoping that you guys could help me out.
Nivo 滑块和Fancybox 在我的个人网站上运行:
http://tinyurl.com/d3zley7
Nivo 滑块和Fancybox 无法在客户的网站上运行:
http://tinyurl.com/d2egv2v
考虑到不需要将 js 托管在服务器上,可能导致这种情况的原因是什么?非常感谢您的帮助!
What could be causing this considering it's not required that the js is hosted on the server? I greatly appreciate your help!
推荐答案
不是 jQuery 问题或其他问题,是因为您的所有脚本引用都返回 404找不到页面"
Is not a jQuery issue or whatsoever, is because all your scripts references return a 404 "page not found"
您的引用从 root /
文件开始
Your references start from the root /
file
<script src="L25pdm8tc2xpZGVyL2pxdWVyeS5uaXZvLnNsaWRlci5qcw==" type="text/javascript"></script>
<script src="L25pdm8tc2xpZGVyL2pxdWVyeS5uaXZvLnNsaWRlci5wYWNrLmpz" type="text/javascript"></script>
<!--/ Fancybox Script-->
<script type="text/javascript" src="L2ZhbmN5Ym94L2pxdWVyeS5mYW5jeWJveC0xLjMuNC5wYWNrLmpz"></script>
<script type="text/javascript" src="L2ZhbmN5Ym94L2pxdWVyeS5lYXNpbmctMS40LnBhY2suanM="></script>
...etc
.... 但它们应该是相对于目录 nd/
像
.... but they should be relative to directory nd/
like
<script src="bmQvbml2by1zbGlkZXIvanF1ZXJ5Lm5pdm8uc2xpZGVyLmpz" type="text/javascript"></script>
... etc
...路径问题也是如此;)
... so is a path issue ;)
这篇关于jQuery 在不同的虚拟主机上不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:jQuery 在不同的虚拟主机上不起作用
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01