博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在javascrit中怎样来刷新页面
阅读量:6574 次
发布时间:2019-06-24

本文共 1287 字,大约阅读时间需要 4 分钟。

a页面里iframe了个b页面,我想实现在b页面里一个按钮,一按就刷新a页面,也就是父页面,不是只刷新iframe里面的b页面 哦~

请问b页面里的<input type="button" class="btn" value=" 返 回 " οnclick="history.back();">那个onclick 要怎么写呢?啊哈

答案是:parent.location.reload() ;

以下是网上的:

十一种刷新按钮的方法。很不错的,经常上网要找。哈哈。这下放这里了。  

<input type=button value=刷新 οnclick="history.go(0)">
<input type=button value=刷新 οnclick="location.reload()">
<input type=button value=刷新 οnclick="location=location">
<input type=button value=刷新 οnclick="location.assign(location)">
<input type=button value=刷新 οnclick="document.execCommand('Refresh')">
<input type=button value=刷新 οnclick="window.navigate(location)">
<input type=button value=刷新 οnclick="location.replace(location)">
<input type=button value=刷新 οnclick="window.open('自身的文件','_self')">
<input type=button value=刷新 onClick=document.all.WebBrowser.ExecWB(22,1)> 
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<form action="自身的文件">
<input type=submit value=刷新>
</form>
<a id=a1 href="自身的文件"></a>
<input type=button value=刷新 οnclick="a1.click()">

iframe中刷新顶层窗口

MAIN.JSP页面使用IFRAME来内嵌了一个内容页面(A.JSP),如何实现用户点击A.JSP页面的连接时,能更新它的父页面(MAIN.JSP)的内容呢? 

window.parent.location.reload();

window.parent.location.href="地址";

window.top   当前窗口的最顶层窗口

转载于:https://www.cnblogs.com/zhoushihui/p/5711734.html

你可能感兴趣的文章
大整数加法
查看>>
下拉菜单
查看>>
C/C++中extern关键字详解
查看>>
[清华集训2014]玛里苟斯
查看>>
Doctype作用?严格模式与混杂模式如何区分?它们有何意义
查看>>
jquery选择器(可见对象,不可见对象) +判断,对象(逆序)
查看>>
0029-求最小的数
查看>>
【MVC+EasyUI实例】对数据网格的增删改查(上)
查看>>
第三章:如何建模服务
查看>>
EF CodeFirst下数据库更新
查看>>
Project Euler 345: Matrix Sum
查看>>
mysql允许远程登录
查看>>
js判断undefined类型
查看>>
问题账户需求分析
查看>>
你可能不知道的技术细节:存储过程参数传递的影响
查看>>
u3d移动游戏优化规范
查看>>
POJ1703 Find them, Catch them
查看>>
Eclipse Java注释模板设置
查看>>
Docker网络的基本功能操作示例
查看>>
自适应备忘录 demo
查看>>