-2

読み込み中にドロップダウンメニューが壊れてしまう理由を教えてください。リンクはこちらをクリックしてください。

全詳細:

    When the website is loading, its showing all the sub menus present inside and after its loads completly its showing correctly. At the start it should be strong and should not show inside present sub menu...

以下のJavaコードがあります。

<link href="css/dcmegamenu.css" rel="stylesheet" type="text/css" />
<script type='text/javascript' src='js/jquery.hoverIntent.minified.js'></script>
<script type='text/javascript' src='js/jquery.dcmegamenu.1.3.3.js'></script>
<script type="text/javascript">
$(document).ready(function($){
    $('#mega-menu-7').dcMegaMenu({
        rowItems: '3',
        speed: 'fast',
        effect: 'slide'
    });
});
</script>
4

2 に答える 2

3

jQueryリンクを含めていません

  <script type='text/javascript' src='http://code.jquery.com/jquery-1.8.3.min.js'></script>

$準備完了機能を削除してこれを試してください

   $(document).ready(function() {
   // put all your jQuery goodness in here.
   });

これはjQueryコードです。したがって、uはjQueryソースを追加する必要があります。

于 2012-12-17T12:42:54.860 に答える
2

これを一度試してください:

$(function() {

    // Handler for .ready() called.
    $('#mega-menu-7').dcMegaMenu({
        rowItems: '3',
        speed: 'fast',
        effect: 'slide'
    });

});​
于 2012-12-17T12:32:01.483 に答える