功能后刷新页面

时间:2014-02-27 14:36:13

标签: javascript php jquery html reload

我正在使用php + Jquery。 我想在“myFunction”结束时重新加载我的页面。 这就是我目前所拥有的:

<script>
function myFuntion(){
var x = prompt("Enter Value", "0"); //This prompts when calling myFunction()
$("#myDiv").load("config/calcX.php"); //This loads"config/calcX.php" in a Div;
location.reload(true);               //Does not reload my page...
}
</script>

myfunction有什么问题吗?

2 个答案:

答案 0 :(得分:0)

有几种方法:

location.reload()
history.go(0)
location.href = location.href
location.href = location.pathname;
location.replace(location.pathname)
location.reload(false) 

答案 1 :(得分:-1)

你可以试试这个

 window.location.href = 'yourpage.com';