向导单选按钮检查不起作用和发布?

时间:2018-04-22 14:17:13

标签: javascript input checked

我没有从选中的课程中获取数据 - 单选按钮没有发布。

实例: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());
});

1 个答案:

答案 0 :(得分:0)

尝试替换

$(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);