HTML事件屬性onggle
HTML事件屬性onggle
觸發ontoggle
屬性事件當打開或關閉< details> 元件。
HTML5中的新功能
ontoggle
屬性在HTML5中是新的。
句法
<details ontoggle="script">
支持的標簽
<details>
瀏覽器兼容性
details | Yes | No | No | Yes | Yes |
例子
<!DOCTYPE html>
<html>
<body>
<details ontoggle="myFunction()">
<summary>Open the summary</summary>
<p>this is a test.</p>
</details>
<script>
function myFunction() {
console.log("The ontoggle event occured");
}
</script>
</body>
</html>
Click to view the demo