<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>
<script>
function myFunction() {
document.getElementById("myDetails").open = true;
}
</script>
</body>
</html>