我有一個像遺漏的類型錯誤:無法讀取未定義的屬性「頂」(popupWindow.top.close();)
if(typeof json.content[0].redirects != 'undefined'){
if(json.content[0].redirects != ''){
popupWindow = window.open(json.content[0].redirects, "Window2", "width=1000,height=800,scrollbars=yes,left=200");
var p = window.parent.document;
p.onclick = function(){
popupWindow.top.close();
};
}
}
一個腳本,它完美的作品在localhost
。
但在現場彈出窗口出現,但沒有數據並顯示錯誤:
'Uncaught TypeError: Cannot read property 'top' of undefined'.
爲什麼會出現這種情況?
預計結果關閉''top' window'? – guest271314
我不確定,但試試這個'popupWindow.offset()。top.close()' – abhishekkannojia
@ guest271314:yes.it在localhost中關閉,但是這個代碼放到服務器中並不起作用 – anjana