gpt4 book ai didi

javascript - ASP.NET : if(! IsPostback) HTML 中的内容是什么?

转载 作者:行者123 更新时间:2023-12-03 11:08:11 24 4
gpt4 key购买 nike

我想在 HTML 中的页面加载时将 div 设置为“display:none”(之前没有加载过),这在 ASP.NET 中称为 if(!IsPostBack),我不知道 HTML 中叫什么。

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'/>

我不知道它叫什么,所以我试图解释一下。

最佳答案

这有效:

<!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>

关于javascript - ASP.NET : if(! IsPostback) HTML 中的内容是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27734125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com