0

我试图在 jQuery 选项卡窗格中放置一个 jQuery 手风琴,并认为可能与我用于选项卡的代码存在冲突,因为它在插入时没有出现。手风琴在其自己的页面中工作正常。页眉中出现的脚本是:

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script>
<script type="text/javascript" src="script/jquery.tools.min.js"></script>
<script type="text/javascript" src="v3flashslideshow/slideshow.js"></script>
<script type="text/javascript">
function goToByScroll(id){
                 $('html,body').stop().animate({scrollTop: $("#"+id).offset().top},'slow');
        }
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
</script>

页面末尾的脚本是:

<script>
$(function() {
$(".tabs:first").tabs(".css-panes:first > div", { history: true });
});
$(function() {
$("#accordion").tabs(
"#accordion div.pane",
{tabs: 'h2', effect: 'slide', initialIndex: null}

); });

</script>
</body>

谁能看到我可能出错的地方?我是 jQuery 的新手,只是不知道哪里出了问题。HTML 看起来都是正确的,可以在这里查看

对此的任何帮助表示赞赏!

4

1 回答 1

0

为什么要同时使用 jQuery UI 和 jQuery 工具?jQuery UI 可以做标签和手风琴,我从个人经验中知道它们可以一起工作。另外,删除我认为是由 dreamweaver 自动插入的糟糕的 MM_ 代码;)

于 2012-09-17T06:41:52.733 回答