gpt4 book ai didi

jQuery 与多个库冲突?

转载 作者:行者123 更新时间:2023-12-01 02:33:01 25 4
gpt4 key购买 nike

Link to website

我确定冲突发生在我的页面幻灯片和图像 slider 之间。

这是页面幻灯片的代码:

<ul>
<li>
<a href="javascript:$.pageslide({ direction: 'right', href: '_secondary.html' })" class="first">Slide to the right, and load content from a secondary page.</a>
</li>

<li>
<a href="javascript:$.pageslide({ direction: 'left', href: '/template/_secondary.html' })" class="second">Open the page programatically.</a>
</li>
</ul>
<script>
var jq171 = jQuery.noConflict();
</script>
<script src="/template/js/jquery-1.7.1.min.js"></script>
<script src="/template/js/jquery.pageslide.js"></script>
<script>
/* Default pageslide, moves to the right */
$(".first").pageslide({ direction: "right"});

/* Slide to the left, and make it model (you'll have to call $.pageslide.close() to close) */
$(".second").pageslide({ direction: "left"});
</script>`

这是图像 slider :此代码引用两个 jQuery 库 - v1.5.1 和 Orbit-1.2.3

<div class="container" style="margin-top:20px; margin-left:10px;">
<div id="featured">
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
</div>

有一分钟我让他们一起工作,但我不确定是什么导致了冲突。我已经尝试了不同变体的无冲突脚本。如果您需要更多信息来帮助,请告诉我。谢谢!

最佳答案

由于库脚本加载速度的差异,代码有时会起作用,有时则不起作用。有时,它的加载速度足够快,可以在您开始使用时就位,有时则不然。这就是为什么您应该将初始代码放入 ready block 中:

<script src="/template/js/jquery-1.7.1.min.js"></script>
<script src="/template/js/jquery.pageslide.js"></script>
<script type="text/javascript">
var jq171 = jQuery.noConflict();
jq171.ready(function ($) {
/* Default pageslide, moves to the right */
$(".first").pageslide({ direction: "right"});

/* Slide to the left, and make it model (you'll have to call $.pageslide.close() to close) */
$(".second").pageslide({ direction: "left"});
});
</script>

此外,我敦促您重新考虑在同一页面甚至同一站点上使用两个库。一个就够了!

文档

关于jQuery 与多个库冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11367396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com