当用户打开或关闭<details>元素时,将触发onggle事件。您可以尝试运行以下代码来实现ontogle事件属性-
<!DOCTYPE html>
<html>
<body>
<h2>Details</h2>
<p>You need to join office from Feb23<p>
<details ontoggle="display()">
<summary>More Information</summary>
<p>Timings: 9 to 5:30</p>
<p>Office location: Hyderabad</p>
</details>
<script>
function myFunction() {
alert("Timings, office location, etc");
}
</script>
</body>
</html>