当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML ontoggle用法及代码示例


当用户打开或关闭<details>元素时,将触发onggle事件。 <details>元素用于提供其他信息/细节,用户可以根据需要查看或隐藏细节。

用法:

<details ontoggle = "script">

属性值:此属性包含单值脚本,该脚本在onggle事件调用时起作用。

Note:此属性与详细信息标签一起使用。

例:



<!DOCTYPE html > 
<html> 
    <head> 
        <title>ontoggle event attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>ontoggle event attribute</h2> 
        <p>Click below to open the details.</p> 
        <details ontoggle="Geeks()"> 
            <summary style="color:blue";>What is the full 
            form of HTML</summary> 
            <p>Hyper Text Markup Language</p> 
        </details> 
        <script> 
            function Geeks() { 
            alert("The ontoggle event triggered"); 
            } 
        </script> 
    </body> 
</html>                        

输出:
Toggle Attribute

支持的浏览器:下面列出了ongggle事件属性支持的浏览器:

  • 谷歌浏览器12.0
  • Opera 15.0
  • Firefox 48.0
  • Safari 6.0




相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 HTML | ontoggle Event Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。