如何在网站左侧获得重新加载按钮? 我希望它透明和宽度:60px和高度:40px
我需要键入什么才能让它在我的工作中运行: .js文件 .CSS文件 index.html文件
答案 0 :(得分:1)
这很容易做到,但您可能需要更改CSS中的样式,除非您希望按钮完全透明。这只是在点击时重新请求当前页面。
CSS
#reloadButton {
top: 0;
left: 0;
background: transparent;
display: block;
width: 60px;
height: 40px;
}
的Javascript
var reload = document.getElementById("reloadButton");
reload.onclick = window.location.reload();
index.html,紧接在开启的正文标记
之后<a href="javascript:;" id="reloadButton"></a>
祝你好运!