可以通過html的錨標簽來實現
<html>
<head></head>
<body>
<a id="top"></a>
.........................
<!--在返回頂部按鈕處寫-->
<a href="#top">返回頂部</a>
</body>
</html>
js的寫法
頁面上的返回頂部按鈕
<button type="button" onclick="GoTop()"></button>
js中的寫法
function GoTop(){
if (document.body && document.body.scrollTop && document.body.scrollLeft)
{
document.body.scrollTop=0;
}
if (document.documentElement && document.documentElement.scrollTop && document.documentElement.scrollLeft)
{
document.documentElement.scrollTop=0;
}
}
⑵ js : 怎麼設置網頁滾動條超過800px後,顯示「返回頂部」的按鈕
.dingbu2{display:none;}
引入 jquery.min.js 文件
$(window).on('猜逗掘scroll',function(){
varst=$(document).scrollTop();
if(st>0){
$('.dingbu2').fadeIn(300);
}else{
$('.dingbu2').fadeOut(300);
}
});
$(".dingbu2").click(function(){
if(scroll=="off"){
return;
}
指含$("html,body").animate({scrollTop:0},穗核600);
});
⑶ JS或者jquery怎麼設置滾動條回到頂部
JS或者jquery設置滾動條回到頂部的方法:
返回頂部:設置為body的scrollTop為0
滑動效果:animate(Jquery的自定義動畫)
備註:returnTop為觸發返回頂部的元素ID。
⑷ JS獲取body的高度
1、document.body.clientWidth;//網頁可見區域寬
2、document.body.clientHeight;//網頁可見區域高
3、document.body.offsetWidth;//網頁可見區域寬(包括邊線的寬)
4、document.body.offsetHeight;//網頁可見區域高(包括邊線的高)
5、document.body.scrollWidth;//網頁正文全文寬
6、window.screen.availHeight;//屏幕可用工作區高度
7、window.screen.availWidth;//屏幕可用工作區寬度
8、alert($(document.body).outerWidth(true));//瀏覽器時下窗口文檔body的總寬度 包括border padding margin
9、alert($(document.body).width());//瀏覽器時下窗口文檔body的高度
(4)js使得body返回頂部擴展閱讀:
1、alert($(window).height()); //瀏覽器時下窗口可視區域高度
2、alert($(document).height()); //瀏覽器時下窗口文檔的高度
3、alert($(document.body).height());//瀏覽器時下窗口文檔body的高度
4、alert($(document.body).outerHeight(true));//瀏覽器時下窗口文檔body的總高度 包括border padding margin
5、alert($(window).width()); //瀏覽器時下窗口可視區域寬度
6、alert($(document).width());//瀏覽器時下窗口文檔對於象寬度
7、alert($(document).scrollTop()); //獲取滾動條到頂部的垂直高度
8、alert($(document).scrollLeft()); //獲取滾動條到左邊的垂直寬度
⑸ js返回上上個頁面
可以參考下面的幾種方法:
參考方法一
if(保存事件成功)
{response.redirect("a或c.aspx");}
參考方法二
response.write("<script language=jacascript>history.go(-2);</script>");
對於代碼中的-2,用戶可根據自己的需要進行修改。
(5)js使得body返回頂部擴展閱讀:
js有關返回的函數
charAt(index) 返回指定索引處的字元
concat(string2)銜接兩條或少條字元串
fromCharCode(num1, num2, …,BB霜, numN)獲取指定的Unicode值並返回字元串
indexOf(searchString, startIndex) 返回字元串中第一個呈現指定字元串的地位
lastlndexOf(searchString, startIndex) 返回字元串中最後一個呈現指定字元串的地位
⑹ 網頁中「返回頂部」的html代碼怎麼編寫
網站的網頁中都有返回頂部的功能,就是當用戶訪問網頁時,可以迅速的返回頂部。也許會有人覺得這個功能很簡單,沒有什麼說的,但據我目前所知,就有五種方法實現這個功能。而且不同的方法能實現的效果也是有所不同的。下面介紹下這些方法網頁中「返回頂部」的html代碼有好幾種不同的編寫方式:
1、簡單的腳本可實現此功能:
代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>返回頂部</title>
<style type="text/css">
body{height:1000px;}
</style>
</head>
<body>
<div style="height:800px; width:800px;"></div>
<a href="javascript:scroll(0,0)">返回頂部</a>
</body>
</html>