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

搜集:

<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>

投石引玉...实现网页中增加刷新按钮、链接的方法 搜集

 

相关文章:

  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2021-12-19
  • 2021-12-15
  • 2021-08-14
  • 2021-12-15
  • 2021-07-02
猜你喜欢
  • 2021-06-23
  • 2022-12-23
  • 2022-03-04
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案