事件处理程序出了点问题,例如在鼠标离开时div打开和关闭3次。

交换的无线电也可以覆盖或偏移。

我已经尝试了一切,我认为这与我使用event.preventDefault();的方式有关。

更新__

菜单打开3倍固定,但div中互换的收音机仍然有任何想法吗?

http://www.apecharmony.co.uk

// RADIO BUTTON
$("input[name='domain_ext']").each(function () {
    $("#domaindropradio1").attr('checked', 'checked');
    var lbl = $(this).parent("label").text();
    if ($(this).prop('checked')) {
        $(this).hide();
        $(this).after("<div class='radioButtonOn'>" + lbl + "</div>");
    } else {
        $(this).hide();
        $(this).after("<div class='radioButtonOff'>" + lbl + "</div>");
    }
});

$("input[type=radio]").change(function () {
    $(this).siblings('.radioButtonOff').add('.radioButtonOn').toggleClass('radioButtonOff radioButtonOn');
});

// RIBBON RADIO DROPBOX
$('div.ribbonBoxarrow').click(function () {
    $('.ribbonBoxarrow li').show('medium');
});
$('.ribbonBoxarrow li').mouseleave(function () {
    $(this).hide('slow');
});
$("input[name='domain_ext']").parent('label').click(function () {
    $('.ribbonBoxarrow li').hide('slow');
    event.preventDefault();
});

//SWAP SECECTED RADIO
$("div.radiogroup2").on("click", ":radio", function () {
    var l = $(this).closest('label');
    var r = $('#radioselected');
    r.removeAttr('id');
    l.before(r.closest('label'));
    $(this).attr('id', 'radioselected');
    l.prependTo('.radiogroup1');
});

最佳答案

回应:


  div打开和关闭3次。


动画触发的事件超出了您的期望。另外,您的preventDefault()不会阻止其他点击事件触发。

对于您的$("input[name='domain_ext']").parent('label')单击事件,请尝试以下操作:

$("input[name='domain_ext']").parent('label').click(function () {
  $('.ribbonBoxarrow li').mouseleave();
  event.stopImmediatePropagation();
});


对于第二个问题:


  交换的无线电也可以覆盖或偏移。


似乎您正在将单选按钮添加到具有radiogroup1类的元素上,但是您可能希望单选按钮位于嵌套表元素中。

10-04 11:28