gpt4 book ai didi

jquery - 错误: $ is not a function

转载 作者:行者123 更新时间:2023-12-01 06:53:09 26 4
gpt4 key购买 nike

我正在使用一个 Accordion ,它在加载时具有灰度图像,并且当鼠标悬停在其上时,图像以其真实颜色显示。我的脚本中冲突的 J 查询在哪里。出现错误:$ 不是函数

<script type="text/javascript" src="js/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="js/kwicks.js"></script>
<script src="js/greyScale.js"></script>
<script>
$j = jQuery.noConflict();
$j(function () {
$j('.greyScale').hide().fadeIn(1000); // fade in the grayscaled images to avoid visual jump
});
$j(window).load(function () {
// user window.load to ensure images have been loaded
$('.greyScale').greyScale({
fadeTime: 500
// call the plugin with non-defult fadeTime (default: 400ms)
});
});
</script>
<script type="text/javascript">
$().ready(function () {
$('.kwicks').kwicks({
max: 535,
spacing: 10,
sticky: false
});
});
</script>

最佳答案

将所有脚本代码粘贴在一个闭包中,如下所示:

(function($) {

...

}(jQuery));

那么你可以只使用$而不是$j,不会有冲突。

关于jquery - 错误: $ is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11754918/

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