當滑鼠滾輪在元素上捲動時,onwheel 屬性會觸發。
您可以當滑鼠滾輪在 HTML 中的元素上滾動時,請嘗試執行以下程式碼來執行腳本 -
<!DOCTYPE html> <html> <head> </head> <body> <div id = "myDIV" onwheel = "display()">This is demo text. Roll the mouse wheel here.</div> <script> function display() { alert("Mouse Wheel used!"); } </script> </body> </html>
以上是當滑鼠滾輪在HTML元素上滾動時執行腳本嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!