实现网页中增加刷新按钮、链接的方法 搜集

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

搜集:

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

投石引玉...抛砖引玉

原文地址:https://www.cnblogs.com/Wfei/p/2682985.html