2016-11-15 81 views
0

這裏是我的代碼:試圖關閉彈出並重新加載其父頁面

function reloadParentAndClose() { 
    window.opener.location.reload(); 
    window.close(); 
} 

和這裏的錯誤,我得到:

32:132 Uncaught TypeError: Cannot read property 'location' of null(…)

任何想法可能會發生什麼?

回答

1

這意味着window.opener是空的,因此試圖訪問位置屬性是無效的,因爲window.opener爲空,所以不存在這樣的事情window.opener.location

相關問題