html修改表格⼤⼩,调整表格或窗⼝的⼤⼩?HTML5从图像中移除⾼度,仅设置宽度将调整图像⼤⼩并保持⽐例。
您可以使⽤javascript函数获取浏览器的宽度和宽度。⾼度,将是这样的:
function getBrowserWindowSize() {
var myWidth = 0, myHeight = 0;
if (typeof (window.innerWidth) == 'number') {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
}
else if (document.documentElement && (document.documentElement.clientWidth ||
document.documentElement.clientHeight)) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
}
else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
var currWindow = new Array();
currWindow[0] = myWidth;
html表格元素
currWindow[1] = myHeight;
return currWindow;
}
您可以管理所需的元素宽度和宽度。通过再次调⽤此函数调整resize和load事件的⾼度。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论