码迷,mamicode.com
首页 > 其他好文 > 详细

iframe页面刷新问题【转】

时间:2020-09-14 19:10:08      阅读:31      评论:0      收藏:0      [点我收藏+]

标签:url   oca   attribute   ati   log   jquer   logs   details   date   

1.问题:当iframe的页面加载过再关闭之后,如果iframe的src没有发生变化,js不会重新加载,再次打开页面不会刷新;

2.解决方法:关闭页面时清空src,再次打开时即可重新加载最新数据。

$scope.updateCandidateUserValue = function (data) {

    $scope.assignment.candidateUsersName = data;

    $scope.selectUserURL = "";

    document.getElementById("selectUser").removeAttribute("src");

    $scope.isShow = false;

    $scope.$apply();

};

3.应用:angualrjs中出力iframe子页面时发现的问题,在后台删除数据,打开iframe页面之后关闭再打开,页面没刷新,删除数据依然存在。

4.相关: iframe自动刷新本页面:(但是会闪屏一下)

document.getElementById("selectUser").contentWindow.location.reload();

jquery强制刷新

$(‘#iframe‘).attr(‘src‘, $(‘#iframe‘).attr(‘src‘));

?
文章转自:https://www.cnblogs.com/evaxtt/p/9585539.html
更多参考:js刷新iframe页面的方法(兼容主流)

iframe页面刷新问题【转】

标签:url   oca   attribute   ati   log   jquer   logs   details   date   

原文地址:https://www.cnblogs.com/KillBugMe/p/13596958.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!