下面是我的jasx文件,我包括menu.js
<head>
<script src="/js/menu.js" type="text/javascript">
</script>
</head>
menu.js
function initMenu() {
alert("ok");
$('#menu ul').hide();
$('#menu li a').click(
function() {
var checkElement = $(this).next();
if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
$('#menu ul:visible').slideUp('normal');
return false;
}
if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
$('#menu ul:visible').slideUp('normal');
checkElement.slideDown('normal',function(){
var offset = $(this).offset();
$('#menu li a').removeClass('selected');
$(this).parent().find('a:first').addClass('selected');
var margin_top = offset.top-210;
$('div#current').animate({'margin-top':margin_top},2000,'easeOutBounce');
});
return false;
}
}
);
}
$(document).ready(function() {initMenu();});
Icefaces也使用$
变量,因此您必须为jQuery脚本使用另一个变量。您将像这样重新声明它:
var myJQuery = jQuery.noConflict();
和替换$
的所有实例用myJQuery
在您的基于jquery的脚本