Uncaught DOMException: Blocked a frame with origin "http://127.0.0.1" from accessing a cross-origin

最新推荐文章于 2024-10-01 23:36:53 发布
最新推荐文章于 2024-10-01 23:36:53 发布 阅读量3.1w

我浏览自己tomcat上网页用的localhost,访问的子页面用的127.0.0.1,

所以只要浏览器中的localhost改为127.0.0.1就好了

下面是别人出现的类似错误,敲黑板,做笔记。

博客内容来自 http://www.zhimengzhe.com/HTMLjiaocheng/151489.html

iframe子页面调用父页面方法 跨域 异常 Blocked a frame with origin

Blocked a frame with origin "http://127.0.0.1:8080" from accessing a frame with origin "http://localhost:8080".Protocols, domains, and ports must match.

这个是因为你的父页面和子页面不在同一个域下做成的。如这里父页面是在http://localhost:8080,而子页面在http://127.0.0.1:8080下,更改一下路径就可以了。

以上就是iframe子页面调用父页面方法 跨域 异常 Blocked a frame with origin的全文介绍,希望对您学习和使用html网页基础有所帮助.

Vue 项目中 嵌入 i frame <i frame id="i frame " width="100%" height="100%" frame border="0" :src="emb ed Src"></i frame > 报跨域错误 Error in nextTick: "SecurityError: Block ed a frame with origin " http s://test-live.cantonfair.org.cn" from access ing a c ros s-origi
一、报错信息:   “ Block ed a frame with origin from access ing a c ros s- origin frame ” 二、在stackoverflow上找到原因 Same- origin security policy You can't access an <i frame > with Javascript, it would ...
为了轻松偷懒,不想从目的项目中开发目标项目中的页面,但目的项目中需要获取老项目中的页面,这里用了i frame 跨域链接页面出现了问题 Block ed a frame with origin " http ://......" from access ing a c ros s- origin frame . 出现此报错的原因是因为在 http ://driversys. ed aijia.cc下操作 htt...
在子页面,想使用父页面的参数,但是原因两个的域名不一样,所以会出现跨域问题 解决方法:在子页面 window.postMessage("message", '*');//后面的*号就是处理跨域问题的 然后在父页面 window.addEventListener('message', f unc tion (msg) { console.log(msg.data); 设置监听的方法就可以了
这里写自定义目录标题 Unc aught DOM Exception : Block ed a frame with origin "null" from access ing a c ros s- origin frame Unc aught DOM Exception : Block ed a frame with origin “null” from access ing a c ros s- origin frame 一般是跨域所导致的,分享遇到的其中一种 是通过VSCode本地编写html页面,运行在浏览器 地址栏以file://
Unc aught DOM Exception : Block ed a frame with origin "null" from access ing a c ros s- origin frame . 未捕获的安全错误:阻止了一个域为null的 frame 页面访问另一个域为null的页面 本地文件file:///打开会报这个错误,可以...
问题描述: Unc aught DOM Exception : Block ed a frame with origin " http ://localhost:46819"from access ing ac ros s- origin frame . 问题分析: 1、由于页面中子i frame 嵌套了其他网站的页面,导致了跨域问题,无法获取子i frame 的元素和方法。
Unc aught DOM Exception : Block ed a frame with origin http ://ip地址:8080” from access ing a c ros s- origin frame . 问题:这是跨域造成的。 解决方案:目前还在探索阶段,希望能成功; 1、CORS有跨域配置 如果成功,我将详细贴出;...
最近遇到一个棘手的bug,App 中有一个网页内嵌了一个i frame ,这个i frame 一个类似客服机器人聊天窗口的弹出框,嵌在主网页某一个位置,是和主网页不同源的,需要获取i frame 中的areatext元素,当用户点击的时候,弹出一个软键盘,供用户输入。 SUSE seld15, QT5.15.0 参考文档: http s://javascript.info/c ros s-window-communication http s://developer.mozilla.org/zh-CN/docs/Web
Uncaught DOMException: Blocked a frame with origin "http://127.0.0.1" from accessing a cross-origin 31815