我在自己的J模板中出现此错误,其中jquery通过脚本标记链接。
此脚本出现错误:
$(document).ready(function(){
$('.login-dropdown').click(function() { //this passes (tested with alert)
$('.login-container').show(); // there is error
});
});
用于记录 - .login-container 具有显示:无,可以右键显示 show()方法。
我怀疑jquery和joomla之间存在冲突,但最终不知道如何处理它。
感谢您的帮助。
答案 0 :(得分:3)
Joomla使用mootools,因此它们之间可能存在冲突。
jQuery.noConflict();
jQuery(document).ready(function($){
$('.login-dropdown').click(function() { //this passes (tested with alert)
$('.login-container').show(); // there is error
});
});