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>

    投石引玉...抛砖引玉

  • 相关阅读:
    如何保持页脚始终在页面底部
    CSS自适应宽度圆角按钮
    ACM1004
    java输出格式
    北大ACM1001题Exponentiation(求高精度幂)
    深入理解sizeof
    java之类BigDecimal
    ACM1003
    ACM1005
    C的输出格式printf
  • 原文地址:https://www.cnblogs.com/Wfei/p/2682985.html
Copyright © 2011-2022 走看看