我试图弄清楚如何在单击后和页面重新加载后保留按钮单击状态。在我的代码中,我使用了一个 onclick 事件,所以如果我需要添加另一个事件,我可以这样做......只是想弄清楚如何保持点击状态。感谢任何时间的帮助,谢谢。
<html>
<head>
<style type="text/css">
#sub3 {
position: absolute;
left: 100px;
top: 200px;
background-color: #f1f1f1;
width: 180px;
padding: 10px;
color: black;
border: #0000cc 2px dashed;
display: none;
}
</style>
<script language="JavaScript">
function setVisibility(id, visibility) {
document.getElementById(id).style.display = visibility;
}
</script>
</head>
<body >
<input id="input1" type=button value='Show Layer' onclick="setVisibility('sub3', 'inline');";>
<div id="sub3">Message Box</div>
</body>
</html>