導航:首頁 > 編程語言 > js計算手機瀏覽器高度

js計算手機瀏覽器高度

發布時間:2024-08-03 07:29:21

js 如何獲得瀏覽器的高度

要在js中獲得瀏覽器的高度可以參考以下步驟(具體代碼見最後):
1、outerHeight屬性設置或返回一個窗口的外部高度,包括所有界面元素(如工具欄/滾動條)。
2、outerWidth屬性設置或返回窗口的外部寬度,包括所有的界面元素(如工具欄/滾動)。
3、innerheight 返回窗口的文檔顯示區的高度。
4、innerwidth 返回窗口的文檔顯示區的寬度。
補充:
在瀏覽器兼容方面:
1、所有主流瀏覽器都支持 outerWidth 和 outerHeight 屬性。
注意:IE 8 及更早 IE 版本不支持該屬性。
2、所有主流瀏覽器都支持 innerWidth 和 innerHeight 屬性。
注意:IE 8 及更早 IE版本不支持這兩個屬性。

獲取代碼:
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
<head>
<title>請調整瀏覽器窗口</title> <meta http-equiv="content-type" content="text/html; charset=gb2312">
</meta></head>
<body>
<h2 align="center">請調整瀏覽器窗口大小</h2><hr />
<form action="#" method="get" name="form1" id="form1">
<!--顯示瀏覽器窗口的實際尺寸-->
瀏覽器窗口 的 實際高度: <input type="text" name="availHeight" size="4"/><br />
瀏覽器窗口 的 實際寬度: <input type="text" name="availWidth" size="4"/><br />
</form>
<script type="text/javascript">
<!--
var winWidth = 0;
var winHeight = 0;
function findDimensions() //函數:獲取尺寸
{
//獲取窗口寬度
if (window.innerWidth)
winWidth = window.innerWidth;
else if ((document.body) && (document.body.clientWidth))
winWidth = document.body.clientWidth;
//獲取窗口高度
if (window.innerHeight)
winHeight = window.innerHeight;
else if ((document.body) && (document.body.clientHeight))
winHeight = document.body.clientHeight;
//通過深入Document內部對body進行檢測,獲取窗口大小
if (document.documentElement && document.documentElement.clientHeight && document.documentElement.clientWidth)
{
winHeight = document.documentElement.clientHeight;
winWidth = document.documentElement.clientWidth;
}
//結果輸出至兩個文本框
document.form1.availHeight.value= winHeight;
document.form1.availWidth.value= winWidth;
}
findDimensions();
//調用函數,獲取數值
window.onresize=findDimensions;
//-->
</script>
</body>
</html>

② js或者jquery如何實時獲取瀏覽器的高度和寬度的

jquery

$(function(){
/*調整窗口自動調整寬度*/
$(window).resize(function(){
var h = $(window).height();
var w = $(window).width();
console.info("窗口高度:" + h + "; 窗口寬度:" + w);
});
});

③ 如何用 js 取得瀏覽器的高度並賦值給div

js取得瀏覽器的高度並賦值給div的步驟如下:

1."http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><title>

2.請調整瀏覽器窗口大小</h2><hr/><formaction="#"method="get"name="form1"id="form1"><!--

3.顯示瀏覽器窗口的實際尺寸-->瀏覽器窗口的實際高度:<inputtype="text"name="availHeight"size="4"/><br/>

4.瀏覽器窗口的實際寬度:<inputtype="text"name="availWidth"size="4"/><br/></form><scripttype="text/javascript"><!--varwinWidth=0;varwinHeight=0;functionfindDimensions()

5.//函數:獲取尺寸{//獲取窗口寬度if(window.innerWidth)winWidth=window.innerWidth;elseif((document.body)&&(document.body.clientWidth))winWidth=document.body.clientWidth;//獲取窗口高度document.form1.availHeight.value=winHeight;document.form1.availWidth.value=winWidth;}findDimensions();//調用函數,獲取數值window.onresize=findDimensions;//--></script></body></html>

④ 【急】高分求完整的js獲取瀏覽器個要素高度寬度值的方法!!!!

在IE下:
獲取瀏覽器可見區域寬度:width = document.documentElement.clientWidth;
獲取瀏覽器可見區域高度:height = document.documentElement.clientHeight;
Body對象寬度:width = document.body.clientWidth;
Body對象高度:height = document.body.clientHeight;
firefox和IE一樣...

在Opera下:
獲取瀏覽器可見區域寬度:width = document.body.clientWidth;
獲取瀏覽器可見區域高度:height = document.body.clientHeight;
Body對象寬度:width = document.documentElement.clientWidth;
Body對象高度:height = document.documentElement.clientHeight;

在沒有定義W3C標准下...
三種瀏覽器均為:
獲取瀏覽器可見區域寬度:width = document.documentElement.clientWidth;
獲取瀏覽器可見區域高度:height = document.documentElement.clientHeight;

⑤ js獲取瀏覽器高度+上下滾動條的高度,也就是整個網頁的高度,需求,要求兼容ie6,7,火狐等主流瀏覽器

您好!很高興為您答疑!

給您提供一個代碼,根據需要稍做修改就可以了,兼容各瀏覽器:
function getViewSizeWithoutScrollbar(){//不包含滾動條
return {
width : document.documentElement.clientWidth,
height: document.documentElement.clientHeight
}
}
function getViewSizeWithScrollbar(){//包含滾動條
if(window.innerWidth){
return {
width : window.innerWidth,
height: window.innerHeight
}
}else if(document.documentElement.offsetWidth == document.documentElement.clientWidth){
return {
width : document.documentElement.offsetWidth,
height: document.documentElement.offsetHeight
}
}else{
return {
width : document.documentElement.clientWidth + getScrollWith(),
height: document.documentElement.clientHeight + getScrollWith()
}
}
}
您可以在火狐社區了解更多內容。希望我的回答對您有所幫助,如有疑問,歡迎繼續在本平台咨詢。

⑥ jquery js獲取移動設備瀏覽器高度

在js使用過程中可能會根據要求獲取瀏覽器高度和寬度。
一、獲取瀏覽器的高度版:
jquery代碼直接使用 $(window).height();
原生態權JS代碼需要考慮頁面DOCTYPE的聲明,使用以下代碼:
<script>
var w=document.documentElement?document.documentElement.clientHeight:document.body.clientHeight;
alert(w);
</script>
二、獲取瀏覽器的寬度:
jquery代碼直接使用 $(window).With();
原生態JS代碼:
var w=document.documentElement?document.documentElement.clientWidth:document.body.clientWidth;

⑦ 原生js怎麼寫判斷瀏覽器窗口的寬高並輸出到<section style=「height:xx;width:xx」></section>

document.getElementsByTagName 返回的是一個數組,所以 list 是一個數組,list 就沒有 style 屬性。list.style 就是 undefined,你給 list.style 的 height 屬性賦值,就報錯了,說你給一個 undefined 的 height 屬性賦值。


要修改的地方是,如果你有多個 section 都要處理,那就循環一下:


for(vari=0,l=list.length;i<l;i+=1){
list[i].style.height=winHeight;
list[i].style.width=winWidth;
}
閱讀全文

與js計算手機瀏覽器高度相關的資料

熱點內容
超值貓qq群購秒殺群 瀏覽:138
pdf文件能備注嗎 瀏覽:174
html可視化數據源碼在哪裡 瀏覽:387
adobereader專用卸載工具 瀏覽:28
vivo手機數據如何備份 瀏覽:888
ithmb文件轉換器 瀏覽:66
看病找什麼網站好 瀏覽:579
linux如何查看文件系統 瀏覽:581
linux統計點頻率 瀏覽:627
全民泡泡大戰安琪兒升級 瀏覽:620
編程scratch如何保存 瀏覽:750
aspnetmvc傳json 瀏覽:132
如何下載看神片的狐狸視頻app 瀏覽:579
怎樣將木紋文件添加到cad 瀏覽:223
java中的hashset 瀏覽:70
mate8升級emui50嗎 瀏覽:396
網路怎麼校線 瀏覽:546
會玩app稀有寶箱裡面有什麼 瀏覽:718
打開icloud備份文件在哪裡看 瀏覽:602
一個表格多個數據怎麼樣查找數據 瀏覽:466

友情鏈接