我有两个这样开始的功能
功能一:
jQuery(function() {
jQuery('.fancypantsaccordionholder').accordion({
oneOpenedItem:true,
speed:300,
scrollSpeed:300,
open:0
});
});
功能二
jQuery(document).ready(function(){
jQuery('#sidepanel_jt').tabSlideOut({
tabHandle: '.handle',
pathToTabImage:'',
imageHeight: '',
imageWidth: '',
tabLocation: '<?php echo $panel_position;?>',
speed: <?php echo $speed;?>,
action: 'click',
topPos: '<?php echo $topposition;?>px',
fixedPosition: true
});
});
但是如果我将 $ 放在一个函数中,即使它不起作用,它也不能使用这两个相同的 jquery 函数名称。
请帮助各位。