我找遍這裏看到,因爲這麼多人問這個問題,但不管如何,我不斷收到undefined
..的Javascript重載()不工作
function remove_item(itemid) {
var window = top.location;
var host = window.host;
$.ajax({
url: "http://"+host+"/backend/remove_lockbox.php?id="+itemid,
success: function() {
$(document).ajaxStop(function(){
window.top.location.reload();
});
}
});
}
這是我的代碼。我試過window.location.reload
,host.location.reload
...我嘗試了一切,我一直得到undefined
...位置的父母總是undefined
無論是window
,host
,window.top
,任何。 有人可以幫我嗎?
沒有錯'window.top.location.reload();' ,但真的嗎? 'var window = top.location;'?這看起來不正確。 –
您使用哪個瀏覽器? –
另一種方式window.top.location = window.top.location –