问题遇到的现象和发生背景
点击隐藏没反应
用代码块功能插入代码,请勿粘贴截图
<html>
<head>
<title>第四题</title>
<script type="text/javascript">
function hidden(){
if(confirm('确定要隐藏吗?')){
var picture=document.getElementById('picture');
picture.style.visibility="hidden";
}
}
function show(){
var picture=document.getElementById('picture');
picture.style.visibility="visible";
}
</script>
</head>
<body>
<img id="picture" src="xiaohui.jpg" width="80" height="80" style="visibility: visible" />
<input type="button" onclick="hidden();" value="隐藏" />
<input type="button" onclick="show();" value="恢复" />
</body>
</html>
运行结果及报错内容
我想要达到的结果
点击隐藏按钮可将图片隐藏