博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javascript网页刷新方法集锦
阅读量:4913 次
发布时间:2019-06-11

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

方法一:

 

<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="window.navigate(location)">

 

方法五:

 

<input type=button value=刷新 οnclick="location.replace(location)">

 

方法六:

 

<input type=button value=刷新 οnclick="document.execCommand('Refresh')" />

 

方法七:

 

<input type=button value=刷新 οnclick="window.open('Default.aspx','_self')" />

转载于:https://www.cnblogs.com/zcttxs/archive/2012/06/12/2546377.html

你可能感兴趣的文章
xdebug调试的原理
查看>>
php 日期时间运算比较
查看>>
C#类、接口、虚方法和抽象方法
查看>>
Linq C#增删改查
查看>>
[转]第一章 Windows Shell是什么 【来源:http://blog.csdn.net/wangqiulin123456/article/details/7987862】...
查看>>
iOS获取设备UUID和IDFA
查看>>
模糊查询
查看>>
linux 出现:-bash-3.2$提示符
查看>>
jsp电子商务 购物车实现之二 登录和分页篇
查看>>
科普:搜索引擎的基本工作原理
查看>>
Docker Compose 原理
查看>>
mongodb index 的background 及集群的索引建立
查看>>
判断两个控件在同一个Window上是否有重叠
查看>>
Android+Jquery Mobile学习系列(3)-创建Android项目
查看>>
android:inputType参数类型说明
查看>>
android 抽屉式滑动demo
查看>>
Swift语言Storyboard教程:第一部分
查看>>
unload事件Ajax提交问题
查看>>
代码工程flex不显示GIF图片问题
查看>>
Kotlin 初窥门径[2]:流程控制
查看>>