这是非常令人沮丧的,因为它看起来很简单但行不通。
在我的身体里我有
<div id ="splashscreen" style="display:block">
<h3>title</h3>
<p>text</p>
<inputtype="button" value="Start" onClick="splash();" />
</div>`
在我的脑海中,在我拥有的脚本标签中
function splash() {
var divSplash = document.getElementById("splashscreen");
divSplash.style.display = "none";
}
当然,当单击开始按钮时,splash()
应该调用该函数并且将我的splashscreen
div 的显示设为无?