我想<iframe>使用JavaScript 重新加载。到目前为止,我发现的最好方法是将iframe的src属性设置为其自身,但这并不是很干净。有任何想法吗?
<iframe>
src
document.getElementById('some_frame_id').contentWindow.location.reload();
注意,在Firefox中,window.frames[]不能通过id进行索引,而只能通过名称或索引进行索引
window.frames[]