我想在之前没有加载的HTML页面上将div设置为“display:none”,在ASP.NET中调用if(!IsPostBack),我不知道在HTML中调用了什么。 / p>
function startUP()
{
document.getElementById('output').style.display = "none";
}
<body onload='startUP();'>
<div id='output'>
<p>hide me on load and show me onclick<p>
</div>
<button id='showOutput'/>
我不知道它叫什么,所以我试着解释它。
答案 0 :(得分:1)
这有效:
<!DOCTYPE html>
<html>
<head>
<script>
function startUP() {
document.getElementById('output').style.display = "none";
}
</script>
</head>
<body onload='startUP();'>
<div id='output'>
<p>hide me on load and show me onclick<p>
</div>
</body>
</html>
&#13;