नया आईफ्रेम या नई विंडो बनाकर एक नया वेब ब्राउज़िंग संदर्भ बनाएं। हम पोस्टमैसेज () का उपयोग करके डेटा भेज सकते हैं और इसके दो तर्क हैं। वे इस प्रकार हैं
- >संदेश - संदेश भेजने के लिए
- targetOrigin - मूल नाम
आइफ्रेम से बटन पर संदेश भेजने के लिए एक उदाहरण देखते हैं:
var iframe = document.querySelector('iframe'); var button = document.querySelector('button'); var clickHandler = function(){ iframe.contentWindow.postMessage('The message to send.','https://www.tutorialspoint.com); } button.addEventListener('click',clickHandler,false);