使用 jQuery 的 Magento 库有问题吗?
您好,我目前正在使用 magento,并希望使用 jquery 将 jquery 幻灯片与圆角集成。然而,我在与其他人一起使用 jquery 时遇到问题,即使我已将代码包装在:
(function($) {
$(document).ready(function(){
// code here
});
})(jQuery);
您可以找到我的 js 文件的链接 此处。
我从 jquery site/cdn 调用 jquery-latest,主题是默认的。
Hi I am working with magento at the moment and want to integrate a jquery slideshow with rounded corners using jquery. However I am having a problem using jquery with the others, even though I have wrapped my code in:
(function($) {
$(document).ready(function(){
// code here
});
})(jQuery);
You can find a link to my js file here.
I am calling jquery-latest from the jquery site/cdn, and the theme is default.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管您已将代码正确包装在匿名函数中,但您的主题是否也为 Prototype 调用 jQuery 的 noConflict清酒?
Although you have correctly wrapped your code in an anonymous function does your theme also call jQuery's noConflict for Prototype's sake?