zoukankan      html  css  js  c++  java
  • 实现网页中增加刷新按钮、链接的方法 搜集

    最近用到一个技术,实现在网页中添加“刷新”超链接的方法,在网上搜集了一些,但是都是按钮形式的,悲剧,经过尝试,发现稍加改动,放在超链接上效果甚好!

    搜集:

    <input type=button value=刷新 onclick="history.go(0)">
    <input type=button value=刷新 onclick="location.reload()">
    <input type=button value=刷新 onclick="location=location">
    <input type=button value=刷新 onclick="location.assign(location)">
    <input type=button value=刷新 onclick="document.execCommand(@#Refresh@#)">
    <input type=button value=刷新 onclick="window.navigate(location)">
    <input type=button value=刷新 onclick="location.replace(location)">
    <input type=button value=刷新 onclick="window.open(@#自身的文件@#,@#_self@#)">
    <input type=button value=刷新 onClick=document.all.WebBrowser.ExecWB(22,1)>

    小测试:

    <a href="#" onclick="history.go(0)"><font size=3 color=white>刷新</font></a>

    投石引玉...抛砖引玉

  • 相关阅读:
    shell习题第21题:计算数字的个数
    shell习题第20题:统计文件大小
    萌新小白
    编程第一天
    萌新报道
    linux下安装php扩展pdo_oci和oci8
    安装Hadoop伪分布式踩过的坑
    zabbix安装过程
    MySQL_索引
    mysql复制
  • 原文地址:https://www.cnblogs.com/Wfei/p/2682985.html
Copyright © 2011-2022 走看看