刷新工作正常,但我最终在页面底部。我希望刷新让我处于页面顶部。
<script type="text/javascript">
$(document).ready(function(){
//Check if the current URL contains '#'
if(document.URL.indexOf("#")==-1){
// Set the URL to whatever it was plus "#".
url = document.URL+"#";
location = "#";
//Reload the page
location.reload(true);
}
});
</script>
答案 0 :(得分:0)
或者像这样使用普通的JS:
scroll(0,0)
&#13;