如何在ASP.NET中刷新Iframe,我每次都需要在iframe页面加载工作中更改源代码,请参阅示例:
document.getElementById('frame1').setAttribute('src', 'Questionair.aspx');
每次我需要去'Questionair.aspx'页面并执行页面加载,在我的代码中这个源更改和页面加载执行一次 谢谢
答案 0 :(得分:1)
您可以先重新设置'src'属性然后调用location.reload方法重新加载IFrame的来源:
document.getElementById('frame1').setAttribute('src', 'Questionair.aspx');
document.getElementById('frame1').contentWindow.location.reload(true);