在使用者開啟或關閉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>
廣告