向导单选按钮选中不起作用,post?

Wizard radio button checked not work and post?

我没有从选中的 class 获取数据 - 单选按钮不是 post。

实例:https://www.kodjs.com/uyeol.php
全代码 jQuery:https://jsfiddle.net/8Lbsdduv/1/

$('[data-toggle="wizard-radio"]').click(function(){
        wizard = $(this).closest('.wizard-card');
        wizard.find('[data-toggle="wizard-radio"]').removeClass('active');
        $(this).addClass('active');
        $(wizard).find('[type="radio"]').removeAttr('checked');
        $(this).find('[type="radio"]').attr('checked','true');  

/*My code*/

$( "input" ).on( "click", function() {
  $( "#log" ).html( $( "input:checked" ).val());
});

尝试替换

$(wizard).find('[type="radio"]').removeAttr('checked');
$(this).find('[type="radio"]').attr('checked','true');

有了这个

$(wizard).find('[type="radio"]').prop('checked', false);
$(this).find('[type="radio"]').prop('checked',true);