How do I redirect users after submit button click?

后端 未结 7 2308
悲哀的现实
悲哀的现实 2020-12-10 04:55

How do I redirect users after submit button click? My javascript isn\'t working:

Javascript



        
7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-10 05:23

    // similar behavior as an HTTP redirect
    window.location.replace("http://stackoverflow.com/SpecificAction.php");
    
    // similar behavior as clicking on a link
    window.location.href = "http://stackoverflow.com/SpecificAction.php";
    

提交回复
热议问题