search
HomeWeb Front-endJS Tutorialjs cross-domain problem cross-domain iframe adaptive size implementation code_javascript skills

Copy code The code is as follows:


<script> <BR>function setHeight(){ <BR>var dHeight = document.documentElement.scrollHeight; <BR>var t = document.createElement("div"); <BR>t.innerHTML = ' <iframe id="kxiframeagent" src="http://rest.kaixin001.com/api/agent.html#' dHeight '"scrolling="yes" height="0px" width="0px">< /iframe>'; <BR>document.documentElement.appendChild(t.firstChild); <BR>} <BR></script>

I was thinking about how to solve the cross-domain problem! Later After searching on the Internet, I suddenly realized

. I copied it as follows and everyone focused on understanding its implementation ideas:


Question:

The page a.htm under domain name A is embedded into the page b.html under domain name B through iframe. Since the size of b.html is unpredictable and will change, the iframe adaptive size in a.htm is required. .

The essence of the problem:

JS cross-domain problem, because in order to control the size of the iframe in a.htm, you must first read the size of b.html, A and B do not belong to the same domain. The access of js is limited and the size of b.html cannot be read.

Solution:

First of all, the premise is A , B is a cooperative relationship, b.html can introduce the js provided by A

First, a.html introduces b.html through iframe

Copy code The code is as follows:




B introduced the js file provided by A in b.html

Html code
Copy code The code is as follows:



The js first reads b .html width and height, then create an iframe, src is the intermediate proxy page a_proxy.html in the same domain as A, set the read width and height into the hash of src

Html code
Copy code The code is as follows:



a_proxy.html is a good intermediate proxy page provided under domain A. It is responsible for reading the width and height values ​​​​in location.hash, and then setting the width and height of the iframe in a.html under the same domain.

Js code
Copy code The code is as follows:

var pParentFrame = parent. parent.document.getElementById("aIframe");
var locationUrlHash = parent.parent.frames["aIframe"].frames["iframeProxy"].location.hash;
pParentFrame.style.width = locationUrlHash. split("#")[1].split("|")[0] "px";
pParentFrame.style.height = locationUrlHash.split("#")[1].split("|") [1] "px";
var pParentFrame = parent.parent.document.getElementById("aIframe");
var locationUrlHash = parent.parent.frames["aIframe"].frames["iframeProxy"]. location.hash;
pParentFrame.style.width = locationUrlHash.split("#")[1].split("|")[0] "px";
pParentFrame.style.height = locationUrlHash.split ("#")[1].split("|")[1] "px";

In this case, the iframe in a.html will adapt to the width and height of b.html .

Other similar js cross-domain operation problems can also be solved according to this idea
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Session 跨域问题的解决方法PHP Session 跨域问题的解决方法Oct 12, 2023 pm 03:00 PM

PHPSession跨域问题的解决方法在前后端分离的开发中,跨域请求已成为常态。在处理跨域问题时,我们通常会涉及到session的使用和管理。然而,由于浏览器的同源策略限制,跨域情况下默认情况下无法共享session。为了解决这个问题,我们需要采用一些技巧和方法来实现session的跨域共享。一、使用cookie跨域共享session最常

微软:每次访问时 Outlook 错误都会下载“TokenFactoryIframe”文件微软:每次访问时 Outlook 错误都会下载“TokenFactoryIframe”文件Apr 19, 2023 am 08:25 AM

当用户通过Safari浏览器访问电子邮件服务时,微软的Outlook正在macOS上下载一个名为“TokenFactoryIframe”的神秘文件。发现Outlook在每次访问时下载的“TokenFactoryIframe”文件的用户现已广泛报告此问题。Outlook每隔几秒或至少在每次访问Apple平台上的Outlook时都会下载此神秘文件。根据我们的调查结果,这似乎是由发布到Outlook的服务器端更新错误引起的问题,与Safari或macOS无关。微软在一份

Vue 中如何进行跨域请求?Vue 中如何进行跨域请求?Jun 10, 2023 pm 10:30 PM

Vue是一种流行的JavaScript框架,用于构建现代化的Web应用程序。在使用Vue开发应用程序时,常常需要与不同的API交互,而这些API往往位于不同的服务器上。由于跨域安全策略的限制,当Vue应用程序在一个域名上运行时,它不能直接与另一个域名上的API进行通信。本文将介绍几种在Vue中进行跨域请求的方法。1.使用代理一种常见的跨域解决方案是使用代理

如何使用Flask-CORS实现跨域资源共享如何使用Flask-CORS实现跨域资源共享Aug 02, 2023 pm 02:03 PM

如何使用Flask-CORS实现跨域资源共享引言:在网络应用开发中,跨域资源共享(CrossOriginResourceSharing,简称CORS)是一种机制,允许服务器与指定的来源或域名之间共享资源。使用CORS,我们可以灵活地控制不同域之间的数据传输,实现安全、可靠的跨域访问。在本文中,我们将介绍如何使用Flask-CORS扩展库来实现CORS功

如何在HTML中允许跨域使用图像和画布?如何在HTML中允许跨域使用图像和画布?Aug 30, 2023 pm 04:25 PM

为了允许跨域使用图像和画布,服务器必须在其HTTP响应中包含适当的CORS(跨域资源共享)头。这些头可以设置为允许特定的来源或方法,或者允许任何来源访问资源。HTMLCanvasAnHTML5CanvasisarectangularareaonawebpagethatiscontrolledbyJavaScriptcode.Anythingcanbedrawnonthecanvas,includingimages,shapes,text,andanimations.Thecanvasisagre

iframe能做什么iframe能做什么Aug 23, 2023 pm 03:50 PM

iframe用途有嵌入其他网页、广告展示、跨域通信、内容分割、安全隔离、框架集成等。详细介绍:1、嵌入其他网页,在一个网页中嵌入另一个网页,通过使用iframe,可以将这些内容无缝地嵌入到网页中;2、广告展示,iframe可以用于显示广告内容;3、跨域通信,由于安全原因,浏览器限制了不同源之间的直接通信,但是通过使用iframe可以在不同源之间进行通信;4、内容分割等等。

什么是layui iframe什么是layui iframeAug 23, 2023 pm 03:55 PM

Layui是一款轻量级的前端UI框架,iframe是HTML中的一个元素,用于在网页中嵌入另一个网页。在Layui框架中,layui iframe是指Layui提供的一种特殊的页面加载方式,用于在当前页面中加载另一个页面。

Vue技术开发中遇到的跨域问题及解决方法Vue技术开发中遇到的跨域问题及解决方法Oct 08, 2023 pm 09:36 PM

Vue技术开发中遇到的跨域问题及解决方法摘要:本文将介绍在Vue技术开发过程中,可能遇到的跨域问题以及解决方法。我们将从导致跨域的原因开始,然后介绍几种常见的解决方案,并提供具体代码示例。一、跨域问题的原因在Web开发中,由于浏览器的安全策略,浏览器会限制从一个源(域、协议或端口)请求另一个源的资源。这就是所谓的“同源策略”。当我们在Vue技术开发中,前端与

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.