1">
2请调整浏览器窗口大小</h2><hr /><form action="#" method="get" name="form1" id="form1"><!--
3显示浏览器窗口的实际尺寸-->浏览器窗口 的 实际高 度: <input type="text" name="availHeight" size="4"/><br />
4浏览器窗口 的 实际宽度: <input type="text" name="availWidth" size="4"/><br /></form><script type="text/javascript"><!-- var winWidth = 0;var winHeight = 0;function findDimensions()
5//函数:获取尺寸{//获取窗口宽度if (windowinnerWidth)winWidth = windowinnerWidth;else if ((documentbody) && (documentbodyclientWidth))winWidth = documentbodyclientWidth;//获取窗口高度documentform1availHeightvalue= winHeight;documentform1availWidthvalue= winWidth;}findDimensions();//调用函数,获取数值windowonresize=findDimensions;//--></script></body></html>
<title>Js获取适时获取鼠标坐标值并显示</title>
<script type="text/javascript">
var getCoordInDocumentExample = function(){
var coords = documentgetElementById("coords");
coordsonmousemove = function(e){
var pointer = getCoordInDocument(e);
var coord = documentgetElementById("coord");
coordinnerHTML = "X,Y=("+pointerx+", "+pointery+")";
}
}
var getCoordInDocument = function(e) {
e = e || windowevent;
var x = epageX || (eclientX +
(documentdocumentElementscrollLeft
|| documentbodyscrollLeft));
var y= epageY || (eclientY +
(documentdocumentElementscrollTop
|| documentbodyscrollTop));
return {'x':x,'y':y};
}
windowonload = function(){
getCoordInDocumentExample();
};
</script>
<div id="coords" style="width:500px;height:200px;background:#F2F1D7;border:2px solid #0066cc;">
请在此移动鼠标。
</div>
<br />
<div id="coord" style="width:500px;border:2px solid #336699;"> </div>
以上就是关于如何用 js 取得浏览器的高度并赋值给div全部的内容,包括:如何用 js 取得浏览器的高度并赋值给div、JS 获取屏幕中鼠标的坐标值、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)