ontoggle 事件
JavaScript基础 2022-06-08 12:03:15小码哥的IT人生shichen
ontoggle 事件
实例
当打开或关闭 <details> 元素时执行 JavaScript:
<details ontoggle="myFunction()">
完整实例:
<!DOCTYPE html>
<html>
<body>
打开详情。
<p>打开 details。</p>
<details ontoggle="myFunction()">
<summary>Copyright 2006-2021.</summary>
<p> - by phpcodeweb. All Rights Reserved.</p>
<p>All content and graphics on this web site are the property of phpcodeweb.</p>
</details>
<script>
function myFunction() {
alert("The ontoggle event occured");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
onggle 事件在用户打开或关闭 <details> 元素时发生。
<details> 元素规定用户可以按需查看或隐藏的其他详细信息。
浏览器支持
表中的数字注明了完全支持该事件的首个浏览器版本。
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
ontoggle | 12.0 | 不支持 | 48.0 | 6.0 | 15.0 |
语法
在 HTML 中:
<element ontoggle="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body>
打开详情。
<p>打开 details。</p>
<details ontoggle="myFunction()">
<summary>Copyright 2006-2021.</summary>
<p> - by phpcodeweb. All Rights Reserved.</p>
<p>All content and graphics on this web site are the property of phpcodeweb.</p>
</details>
<script>
function myFunction() {
alert("The ontoggle event occured");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.ontoggle = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "ontoggle" 事件分配给 details 元素。</p>
<p>打开 details。</p>
<details id="myDetails">
<summary>Copyright 1999-2014.</summary>
<p> - by phpcodeweb. All Rights Reserved.</p>
<p>All content and graphics on this web site are the property of phpcodeweb.</p>
</details>
<script>
document.getElementById("myDetails").ontoggle = function() {myFunction()};
function myFunction() {
alert("The ontoggle event occured");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("toggle", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 addEventListener() 方法将 "toggle" 事件附加到 details 元素。</p>
<p>打开 details。</p>
<details id="myDetails">
<summary>Copyright 1999-2014.</summary>
<p> - by phpcodeweb. All Rights Reserved.</p>
<p>All content and graphics on this web site are the property of phpcodeweb.</p>
</details>
<script>
document.getElementById("myDetails").addEventListener("toggle", myFunction);
function myFunction() {
alert("The ontoggle event occured.");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 不支持 |
---|---|
可取消: | 不支持 |
事件类型: | Event |
支持的 HTML 标签: | <details> |
DOM 版本: | Level 3 Events |