我在页面上有一些按钮,当用户点击它时,后台会发生一些事情并发送回确认,True
如下表所示{ 'foo': true }
。它现在可以工作,但现在如果 foo 为真,我需要重新加载页面。下面的代码发送请求和后台作业被执行,确认被接收并存储在bar
但页面重新加载不起作用。我也需要这个在所有浏览器中工作。
<script type="text/javascript">
$(document).ready(function() {
$('#myButton').bind('click', function () {
$.get("/foo/func/", function(data) {
bar=data.foo;
window.location.reload();
});
});
});
</script>