1. ホーム
  2. jquery

[解決済み] jQuery Clickはラベルをクリックすると2回実行されます。

2022-08-05 22:32:24

質問

私はカスタムラジオボタンを作成するためにjQueryを使用していますが、私は問題があります。 私はラジオ自体にのみクリックした場合、ラジオに関連付けられたラベルをクリックすると、クリックイベントが2回発生し、それは正常に動作している(まあ実際にはそれは私がクリックしているラジオではなく、全体の入力とラベルをラップするDivの)です。ここでは、コードです。

HTMLです。

 <div id="box">
     <asp:RadioButtonList ID="RadioButtonList1" runat="server">
         <asp:ListItem>RADIO1</asp:ListItem>
         <asp:ListItem>RADIO2</asp:ListItem>
         <asp:ListItem>RADIO3</asp:ListItem>
     </asp:RadioButtonList>
</div>

jQueryを使用します。

<script type="text/javascript">
       $(function () {
            $('#box').find('input:radio').each(function (i) {

            var input = $(this);
            // get the associated label using the input's id
            var label = $('label[for=' + input.attr('id') + ']');
            // wrap the input + label in a div
            $('<div class="custom-radio"></div>').insertBefore(input).append(label, input);

            var wrapperDiv = input.parent();

            // find all inputs in this set using the shared name attribute
            var allInputs = $('input[name=' + input.attr('name') + ']');

            // necessary for browsers that don't support the :hover pseudo class on labels
            label.hover(

            function () {
                $(this).addClass('hover');
            }, function () {
                $(this).removeClass('hover checkedHover');
            });

            //bind custom event, trigger it, bind click,focus,blur events
            wrapperDiv.bind('updateState', function () {
                if ($(this)[0].children[1].checked) {
                    allInputs.each(function () {
                        var curDiv = $('div > label[for=' + $(this).attr('id') + ']').parent();
                        curDiv.removeClass('custom-radio-checked');
                        curDiv.addClass('custom-radio');
                    });
                    $(this).toggleClass('custom-radio custom-radio-checked');
                }
                else {
                    $(this).removeClass('custom-radio-checked checkedHover checkedFocus');
                }

            })
            .trigger('updateState')
            .click(function () { console.log('click'); })
            .focus(function () {
                label.addClass('focus');
            }).blur(function () {
                label.removeClass('focus checkedFocus');
            });
        }); 
       });
   </script>

この動作について、何か解決策はありますか?

どのように解決するのですか?

追加してみてください。

evt.stopPropagation();
evt.preventDefault();

を .bind() または .click() のどちらかに追加してください。また、パラメータ evt のように関数に追加します。 function(evt) {...