我有一个 html 页面,我想从中加载子 html 并获取跨域的元素数据。访问此内容的方法是什么。
我不能在这里修改 child.html
http://localhost:8080/child.html
<html>
<body>
<div id="test">Send me a message!</div>
</body>
</html>
main.html
<html>
<load child html>
<body>
<script> How to access element "test" here.
</body>
</html>
我的问题:
- 访问跨域页面元素 ID 的好方法是什么。
- 我听说我们可以使用 iframe.. 但我无法从 child.html 发布消息。