Scenario: When page A opens page B, after operating on page B, page A needs to synchronize the changed data Page A, http://127.0.0.1:10001/A.html var domain = 'http://127.0.0.1:10001'; window.open('http://127.0.0.1:10001/B.html'); window.addEventListener('message', function (event) { if (event.origin !== domain) return; console.log('message received: ' + event.data, event); }, false); B page, http://127.0.0.1:10001/B.html, opener is the reference to the opener of the current window var domain = 'http://127.0.0.1:10001'; window.opener.postMessage("success", domain); window.close(); If A needs to open B and send data to B at the same time // Sending data var domain = 'http://127.0.0.1:10001'; var myPopup = window.open('http://127.0.0.1:10001/B.html'); myPopup.postMessage('data', domain); // Receive data window.addEventListener('message', function(event) { if(event.origin !== 'http://127.0.0.1:10001') return; console.log('message received: ' + event.data,event); },false); The above is the details of how to use js to communicate between two html windows. For more information about js communication between two html windows, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Analyze Mysql transactions and data consistency processing issues
ps: The environment is as the title Install possi...
1. Command Introduction The usermod (user modify)...
This article example shares the specific code of ...
Usage of time difference functions TIMESTAMPDIFF ...
Table of contents 1. Download 2. Deployment 3. Ng...
If the frosted glass effect is done well, it can ...
Table of contents How to set cookies Disadvantage...
Today I will share with you a picture marquee eff...
Absolute positioning method: (1) Set the parent e...
Recently, due to work needs, I need to format num...
Table of contents As attribute and property value...
Table of contents 1. What is syntactic sugar? 2. ...
js data types Basic data types: number, string, b...
After setting the table width in the page to width...
This article example shares the specific code of ...