点击链接后,它应该重定向到当前页面。我如何使用JavaScript?
答案 0 :(得分:39)
假设您的意思是链接应该刷新当前页面,您可以使用window.location.reload()
。在jQuery中它看起来像这样:
<a href="#" id="myLink">Refresh current page</a>
$("#myLink").click(function() {
window.location.reload();
});
在简单的JS中它看起来像这样:
document.querySelector("#myLink").addEventListener('click', function() {
window.location.reload();
});
答案 1 :(得分:3)
这是一种使用vanilla JS而无需内联并且没有jQuery的方法:
<a href="#" id="myLink">Refresh current page</a>
<script>
document.querySelector("a#myLink").onclick = function(){
window.location.reload();
};
</script>
在考虑使用querySelector()
时请注意list of supported browsers答案 2 :(得分:1)
使用按钮的示例:
<input type="button" value="Reload Page" onClick="window.location.reload()">
见这里:
http://www.mediacollege.com/internet/javascript/page/reload.html
答案 3 :(得分:0)
重定向到当前URL与重定向到任何URL相同:
// Same as clicking on a link
window.location.href = window.location.href;
// Same as HTTP redirecting
window.location.replace(window.location.href);