位置:首页 » 文章/教程分享 » iframe重新加载的几种方法
方法1:
document.getElementById('iframeId').contentWindow.location.reload(true);
方法2:
document.getElementById('iframeId').src=url;
方法3:
$("#iframeId").attr('src', url);