<html lang="en-US">
<head>
<title>Hello World!</title>
<style>
</style>
</head>
<body>
<iframe src="http://rwdev.meilishuo.com/test/im" id="f"></iframe>
<script >
var win = document.getElementById(‘f‘).contentWindowvar fs = require(‘fs‘)
win.onload = function(){
var t = fs.statSync(‘./‘)
win.postMessage(t,win.location.href)
}
win.addEventListener(‘message‘, function(event){
console.log(‘parent receive :‘ ,event.data)}, false)
</script>
</body>
</html>
<html lang="en-US">
<head>
</head>
<body><script >
window.postMessage(‘t‘,window.location)
window.addEventListener("message", function(event){
console.log(‘child receive‘ ,event.data)
document.body.innerHTML += ‘<pre>‘+ JSON.stringify(event.data) + ‘</pre>‘
}, false);
</script>
</body>
</html>
node-webkit 主页面和 iframe 页通讯
时间: 2024-10-09 15:52:35