我在Chrome中打開一個窗口/標籤:鍍鉻通話功能不起作用
childWin = window.open('child.html');
然後我打電話在孩子的函數:
childWin.objReceiver({foo: 'blah', zoo: 'bing'});
,但我得到在Chrome父項(Firefox工作正常)中出現以下2個錯誤:
Unsafe JavaScript attempt to access frame with URL file:///C:/Users/Slava/Documents/AMP/app_poc/test/child.html from frame with URL file:///C:/Users/Slava/Documents/AMP/app_poc/test/index.html#. Domains, protocols and ports must match.
Uncaught TypeError: Property 'objReceiver' of object [object Window] is not a function
請指教。
BTW:如何問一個問題很好的例子:簡潔,顯示代碼,顯示實際的錯誤信息。而且因爲*你顯示了實際的錯誤信息,所以我能夠快速識別問題。 +1,很好地完成。 –