<html>
<body>
<details id="myDetails">
<summary>版权所有 2006-2023。</summary>
<p> - 赢科投资。版权所有。</p>
<p>本网站上的所有内容和图形均为赢科投资公司的财产。</p>
</details>
<p>单击“试一试”按钮可查看 details 是否可见(打开)。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注释:</b>Internet Explorer 或 Safari 5 及更早版本不支持 details 元素。</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myDetails").open;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>