IE8 & IE7 onchange event is triggered only after repeated selection

前端 未结 3 800
情深已故
情深已故 2020-12-06 06:40

I have a group of radio with an onchange handler:


<         


        
3条回答
  •  心在旅途
    2020-12-06 07:27

    Another solution is to put the onchange event on the enclosing form via jQuery.

    $('#form').on('change', function() {
        $(this).submit();
    });
    

提交回复
热议问题