提交后重定向到同一页面

时间:2015-04-22 18:43:28

标签: javascript jquery

我想在我的表单中更改文件选择并且能够重定向到同一页面时提交表单。

即:我有这个网址:http://localhost:3000/worker_steps/basic_info。下拉列表更改后,我希望提交表单并再次重定向到http://localhost:3000/worker_steps/basic_info

我在html中有这段代码:

<form class="simple_form form-horizontal" novalidate="novalidate" id="edit_user_385" enctype="multipart/form-data" action="/worker_steps/basic_info" accept-charset="UTF-8" method="post">
<input class="file optional" name="user[picture]" id="user_picture" type="file">  //this is th e dropdown select input

在我的jquery中,我有这个atm:

$("#user_picture").change(function(){
//window.location = "/worker_steps/basic_info";
$(this).closest("form").submit();    
});

2 个答案:

答案 0 :(得分:2)

我会用这个:

window.location.replace(window.location.href);

答案 1 :(得分:0)

您可以在

中使用标题
worker_steps/basic_info 

文件, 所以把下面的行放在文件的末尾,

header('location:the_current_page.html');
exit();