我试图编写一个脚本来改变页面的宽度,考虑到用户的客户端宽度。 这件事情是这样的:通过JavaScript更改body标签样式
function adjustWidth() {
width = 0;
if (window.innerHeight) {
width = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) {
width = document.documentElement.clientWidth;
} else if (document.body) {
width = document.body.clientWidth;
}
if (width < 1152) {
document.getElementsByTagName("body").style.width="950px";
}
if (width >= 1152) {
document.getElementsByTagName("body").style.width="1075px";
}
}
window.onresize = function() {
adjustWidth();
};
window.onload = function() {
adjustWidth();
};
有了这个剧本我从萤火虫得到一个错误:
document.getElementsByTagName("body").style is undefined
现在的问题是,我怎么能进入人体的风格?因为在CSS工作表中它的选择器和宽度属性被定义。
2012-07-30
Nojan
+0
试**的getComputedStyle'(元素)[式]'**和示例**'window.getComputedStyle(document.body的).width' ** .. 。学习http://javascript.info/tutorial/styles-and-classes-getcomputedstyle –
2016-03-24 12:03:09