我尝试使用以下代码行获取iframe的位置
var urlHash = iFrame.contentWindow.location.hash;
我收到了以下错误,
Uncaught DOMException: Blocked a frame with origin "https://localhost:7002" from accessing a cross-origin frame.
at https://localhost:7002/app/login/abc.js:130:57
我经历了以下stackoverflow question,并且根据iframe和js文件的原点是相同的。但根据错误信息,它们的起源并不相同。请注意,iframe是使用javascript代码生成的。
我怎样才能使它有效?