本文介绍了如何使用 Javascript 刷新 IFrame?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有 IFrame 和 Button 的网页,一旦按下按钮,我需要刷新 IFrame.这可能吗,如果可以,怎么办?我搜索并找不到任何答案.
I have a webpage with an IFrame and a Button, once the button is pressed I need the IFrame to be refreshed. Is this possible, if so how? I searched and could not find any answers.
推荐答案
var iframe = document.getElementById('youriframe');
iframe.src = iframe.src;
这篇关于如何使用 Javascript 刷新 IFrame?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!