当用户在 HTML 中打开或关闭
元素时执行脚本?


当用户打开或关闭 <details> 元素时,会触发 ontoggle 事件。你可以尝试运行以下代码来实现 ontoggle 事件属性 -

示例

<!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>

更新日期: 2020 年 3 月 3 日

109 次浏览

启动您的 职业生涯

完成该课程即可获得认证

开始
广告