拥有多个版本的 Jquery
好的,我刚刚启动的网站使用 jquery 1.4.min 来运行我从网站上下载的动态页面更改器。它还使用 1.6.2 来运行照片滑块,我也是从另一个网站获得的。我希望两者都能工作,但它不允许我。有些人告诉我只使用 jquery 的一个版本(最新的),但这不起作用,其他人都说使用:
<script type='text/javascript'>
var $jq = jQuery.noConflict(true);
</script>
并将所有 $ 替换为 $jq。首先,我不知道是否要替换 min.js 文件中的所有 $ 还是仅替换该函数。不管怎样,我都尝试了,但仍然不起作用。到目前为止,这是我网站的链接。 http://envycosmetics.zxq.net/Website/webpages/index.html
在我的网站中,动态页面加载器工作正常,但滑块无法正常工作
Ok the site I just started uses jquery 1.4.min to run a dynamic page changer which I got off a site. And it also uses 1.6.2 to run a photo slider which I also got off another site. I want both to work but it wont let me. Some ppl told me to only use one version of jquery (most recent) but that didn't work and everyone else says use:
<script type='text/javascript'>
var $jq = jQuery.noConflict(true);
</script>
and replace all $ with $jq. First I don't know if I replace all $ from the min.js file as well or just the function. Either way I tried both and it still didn't work. This is a link to my site SO FAR. http://envycosmetics.zxq.net/Website/webpages/index.html
In my site the Dynamic Page loader is working properly but not the slider
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确实应该只使用最新版本,并且仅将其包含在页面顶部一次。您需要修改动态页面更改器以在当前版本的 jQuery 下运行。同时运行两个版本是很草率的。
You really should just use the latest version and include it only one time at the top of the page. You need to modify the dynamic page changer to run under the current version of jQuery. It's sloppy to have two versions going at a time.
我建议您使用 Iframe 来加载照片滑块,它使用不同版本的 jQuery。在不同的 HTML 页面中构建照片滑块并将其加载到 IFRAME 中
I suggest you use an Iframe to load the photo slider, which uses a different version of jQuery. Build the photo slider in a different HTML page and load that in the IFRAME