onseeking 属性を使用して、HTML ビデオで検索がアクティブであることを示します。
<!DOCTYPE html> <html> <body> <video controls onseeking = "display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> <script> function display() { alert("Seeking starts!"); } </script> </body> </html>
以上がsearch 属性が true に設定されている場合、HTML での検索アクティビティの進行中にスクリプトが実行されることを意味します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。