0

PreventDefault()の正しい使用法に関するアドバイスを探しています-コードは以下のとおりです。つまり、a.dropdownTriggerクリックイベントがアンカーにジャンプすることは望ましくありません。その関数の最初の行としてevent.preventDefault()を挿入するとうまくいくと思いましたが、明らかにそうではありません。

URLへの変更を監視するために使用しているhashchangeイベントをバインドしたことと関係があるかもしれないと考えています(a.dropdownTrigger要素をクリックすると、ハッシュの場所が更新され、hashchangeでリスナーが呼び出されます-このようにすることで、 dropdownTriggerへのインバウンドリンクをキャッチし、URL履歴を維持します)。

私が間違っているアイデアはありますか?

    // check inbound anchor links against dropdown ids
    if (hash != "" && dropdowns.length != 0 && $.inArray(hash, dropdowns)) {
        OpenDropdownForHash(hash);
    }

    // listen for hashchange once page loads (handles on-page links to dropdown content)
    $(window).bind('hashchange', function () {
        hash = window.location.hash;
        if (dropdowns.length != 0 && $.inArray(hash, dropdowns)) {
            OpenDropdownForHash(hash);
        }
    });

    // open the targeted dropdown - var incoming is a bool, differentiate between inbound links and on-page clicks
    function OpenDropdownForHash(x) {

        $(x).next('.dropdown').toggleClass('open').slideToggle(200);

        if ($(x).next('.dropdown').hasClass('open')) { //can this live in the callback above? 
            $(x).parent().css("-webkit-transition", "all 0.8s ease")
                .css("backgroundColor", "white")
                .css("-moz-transition", "all 0.8s ease")
                .css("-o-transition", "all 0.8s ease")
                .css("-ms-transition", "all 0.8s ease")

                .css("backgroundColor", '#eeeeee').delay(600).queue(function () {
                    $(this).css("backgroundColor", "white");
                    $(this).dequeue(); //Prevents holding color with no fadeOut on second click.
                });
        }
    }

    // finally, the basic click handler for dropdowns - update the hash (to allow history), which triggers previously bound hashchange event
    $('a.dropdownTrigger').bind('click',function (e) {
        e.preventDefault();
        if ("#" + $(this).attr('id') == location.hash) { // clicking an open dropdown link doesn't trigger the hashchange event, so we check manually
            OpenDropdownForHash("#" + $(this).attr('id'));
        }
        else { // clicking a closed dropdown does call hashchange, so the OpenDropdownForHash function is called by the listener
            location.hash = $(this).attr('id');
        }
    });

更新:もう少し努力してこれを解決し、クリックハンドラーを作り直し、hashchangeリスナーを簡素化しました:

    if (dropdowns.length != 0) {
        // the basic click handler for dropdowns - update the hash (to allow history), which triggers previously bound hashchange event
        $('#mainContentContainer a').bind('click', function (e) {
            var target = $(this).attr('href') != null ? $(this).attr('href') : "#" + $(this).attr('id');
            var offset = window.pageYOffset;
            if ($.inArray(target, dropdowns) && location.hash != target) {                    
                location.hash = target;
                window.scrollTo(0, offset);
            }
            else if ($.inArray(target, dropdowns) && location.hash == target) {
                OpenDropdownForHash(location.hash, $(this).hasClass('dropdownTrigger'));
                window.scrollTo(0, offset);
            }
        });
    }

    $(window).bind('hashchange', function(e) {
        OpenDropdownForHash(location.hash, $(this).hasClass('dropdownTrigger'));  
    });
4

1 に答える 1

0

リンクをクリックするとハッシュが更新される場合、e.preventDefault();は機能していません。リンクが実際にバインドされていることを確認してください。

そうではないようです。に置き換えe.preventDefault();てみてalert('I am bound!!!');、リンクをクリックしたときに何が起こるかを確認してください。

コードをドキュメントにラップする準備はできていますか?

編集:私が正しく理解している場合、リンクをクリックするとハッシュ自体が更新されるため、アンカークリックハンドラーは冗長です。

于 2012-10-18T06:50:10.220 に答える