这段代码有什么问题?我试图将每个部分的高度更改为窗口的高度。
function setsize()
{
var w=$(window).width();
var h=$(window).height();
var sections = new Array("home","about","skills");
for (var i=0;i<3;i++)
{
var element = document.getElementById(sections[i]);
$(element).height(h);
}
}
$(window).ready(function() {
setsize();
});
$(window).resize(function() {
setsize();
});
这是标记示例:
<section id="#home">
<h1>..................</h1>
</header>