CollapsibleSectionExample 可折疊零件演示

<html>
<head>
<title>Style Example</title>
<script type="text/javascript">
function toggle(sDivId) {
var oDiv = document.getElementById(sDivId);
oDiv.style.display = (oDiv.style.display == "none") ? "block" : "none";
}
</script>
</head>
<body>
<div style="background-color: blue; color: white; font-weight: bold; padding: 10px; cursor: pointer"
onclick="toggle('divContent1')" align="right">Click Here</div>
<div style="border: 3px solid blue; height: 100px; padding: 10px"
id="divContent1" align="right">This is some content
to show and hide.</div>
<p align="right"> </p>
<div style="background-color: blue; color: white; font-weight: bold; padding: 10px; cursor: pointer"
onclick="toggle('divContent2')" align="right">Click Here</div>
<div style="border: 3px solid blue; height: 100px; padding: 10px"
id="divContent2" align="right">This is some content
to show and hide.</div>
</body>
</html>

沒有留言: