最新的Web開發教程
 

onseeking事件

<事件對象

執行一個JavaScript,當用戶開始移動/跳躍到視頻中的一個新的位置:

<video onseeking="myFunction()">
試一試»

更多"Try it Yourself"下面的例子。


定義和用法

當用戶開始移動/跳過在音頻/視頻的新位置發生onseeking事件。

提示:onseeking事件是相反onseeked事件。

提示:使用currentTime的音頻/視頻對象的屬性來獲取當前播放位置。


瀏覽器支持

在表中的數字規定,完全支持該事件的第一個瀏覽器版本。

事件
onseeking 9

句法

在HTML:

在JavaScript:

object .onseeking=function(){ 試一試»

在JavaScript中,使用addEventListener()方法:

object .addEventListener("seeking", myScript );
試一試»

注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。


技術細節

泡沫: 沒有
取消: 沒有
事件類型: 事件
支持的HTML標籤: <音頻>和<video>
DOM版本: 3級事件

例子

更多示例

這一實例說明onseeking事件和onseeked事件之間的區別:

<video onseeking="myFunction()" onseeked="mySecondFunction()">
試一試»

使用視頻對象的currentTime屬性當用戶開始跳到新的位置顯示當前播放時間的位置:

// Get the <video> element with id="myVideo"
var x = document.getElementById("myVideo");

// Attach a seeking event to the <video>, and execute a function if a seek operation begins
x.addEventListener("seeking", myFunction);

function myFunction() {
    // Display the current position of the video in a <p> element with id="demo"
    document.getElementById("demo").innerHTML = x.currentTime;
}
試一試»

執行一個JavaScript,當用戶開始移動/跳過在音頻中的新位置:

<audio onseeking="myFunction()">
試一試»

<事件對象