If radio button checked, then submit to different page

前端 未结 4 387
感情败类
感情败类 2021-01-27 01:06

I have this:

4条回答
  •  囚心锁ツ
    2021-01-27 01:47

    you can do this by modifying the Form into:

    
    
    
    
    
    
    
    
    

    I added rel attribute to radio buttons. each has a value of the url. I also added a class to get the element with jQuery.

    Now, you will need some Javascript, i will use jQuery code:

    $('.radio').click(function (){
       rad = $(this);
       radRel = rad.attr('rel');
       $('form#kl').attr('action', radRel);
    });
    

提交回复
热议问题