5

此代码应设置元素高度;但是没有添加任何样式。我错过了一些明显的东西吗?

function setGround() { 
    document.getElementById('content').style.height = '40px';
} 

document.onload = setGround; 

HTML 非常基础:

<!DOCTYPE html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Template</title>
    <link rel="stylesheet" type="text/css" href="css/default.css"/>
    <link rel="stylesheet" type="text/css" href="css/orange.css"/>
    <script type="text/javascript" src="javascript/detect-css.js"></script>
</head>

<body>
    <header>
        <div id="logo"></div>
    </header>
    <section id="sidebar"><p>sf </p>
    </section>

    <section id="content"><p>sf </p>
    </section>

</body>
</html>

谢谢您的帮助!

4

4 回答 4

4

不要使用document.onloadusewindow.onload代替。

http://jsfiddle.net/mowglisanu/r6NzE/

于 2012-08-06T22:12:50.093 回答
2

你可以使用这个:

function setGround() { 
    document.getElementById('content').style.height = '40px';
} 
document.onload = setGround;

但如果您想查看更改,您应该使用以下方法在部分标签上创建边框:

<section id="content" style='border:1px solid fuchsia;' >
<p>sf </p>
</section>     
于 2012-08-06T22:21:53.647 回答
1

你应该使用

window.onLoad = setGround; 

代替

document.onload = setGround;
于 2014-06-24T06:26:29.087 回答
0

你把javascript代码放在哪里了?它在detect-css.js 中吗?

这有效:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Template</title>
<link rel="stylesheet" type="text/css" href="css/default.css"/>
<link rel="stylesheet" type="text/css" href="css/orange.css"/>
<script language="javascript">
function resize(){
document.getElementById("content").style.height='100px';
}
</script>
</head>

<body onload="resize()">
<header><div id="logo"></div></header>
<section id="sidebar"><p>sf </p>
</section>

<section id="content" style="background-color:#CCC; display:block;"><p>sf </p>
</section>

</body>
</html>
于 2012-08-06T22:22:20.127 回答