如何使用相同的 ID 刷新多个 iframe。代码示例:
<iframe id="x123"></iframe>
<iframe id="x123"></iframe>
<iframe id="x123"></iframe>
我测试
document.getElementById('x123').contentWindow.location.reload();
或者
parent.document.getElementById('x123').contentWindow.location.reload();
第一个只是在另一个它不刷新。
谢谢 :)