例
當用戶開始移動/跳躍到視頻中的一個新的位置,提醒一些文字:
var vid = document.getElementById("myVideo");
vid.onseeking = function() {
alert("Seek operation began!");
};
試一試» 更多“試一試”的例子。
定義和用法
當用戶開始移動/跳過在音頻/視頻中的新位置時發生的事件求。
提示:尋求事件是相反seeked事件。
提示:使用currentTime音頻/視頻對象的屬性來獲取當前播放位置。
瀏覽器支持
在表中的數字指定完全支持該事件的第一個瀏覽器的版本。
事件 | |||||
---|---|---|---|---|---|
seeking | 是 | 9 | 是 | 是 | 是 |
句法
在HTML:
< audio|video onseeking="myScript"> Try it
在JavaScript:
audio|video .onseeking=function(){myScript}; Try it
在JavaScript中,使用addEventListener()方法:
audio|video .addEventListener("seeking", myScript ); Try it
注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。
技術細節
支持的HTML標籤: | <audio> and <video> |
---|---|
支持的JavaScript對象: | Audio, Video |
更多示例
例
使用視頻對象的currentTime屬性當用戶開始跳到一個新的位置顯示當前播放時間的位置:
// Get the <video> element with id="myVideo"
var vid =
document.getElementById("myVideo");
// Attach a seeking event to the
<video>, and execute a function if a seek operation begins
vid.addEventListener("seeking", myFunction);
function myFunction() {
// Display the current position of the <video> in a p element with id="demo"
document.getElementById("demo").innerHTML = vid.currentTime;
}
試一試» 例
當用戶開始移動/跳過在音頻中的新位置,提醒一些文字:
var aud = document.getElementById("myAudio");
aud.onseeking = function() {
alert("Seek operation began!");
};
試一試»