我在 iframe 之间进行通信,但是 json.parsing 到 var 然后使用 document.write 转储它不包含任何内容。但如果我alert(e.data)
,它确实如此。
<script>
window.onmessage = function(e) {
var j = JSON.parse(e.data);
document.write(j);
}
</script>
<script>window.postMessage("[1, 5, 'false']", '*');</script>