更多"Try it Yourself"下面的例子。
定義和用法
當用戶完成移動/跳過在音頻/視頻的新位置發生onseeked事件
提示:onseeked事件是相反onseeking事件。
提示:使用currentTime的音頻/視頻對象的屬性來獲取當前播放位置。
瀏覽器支持
在表中的數字規定,完全支持該事件的第一個瀏覽器版本。
事件 | |||||
---|---|---|---|---|---|
onseeked | 是 | 9 | 是 | 是 | 是 |
句法
在HTML:
< 試一試»
在JavaScript:
object .onseeked=function(){ 試一試»
注意: 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 seeked
event to the <video>, and execute a function when a seek operation completes
x.addEventListener("seeked", myFunction);
function myFunction() {
//
Display the current position of the video in a <p> element with id="demo"
document.getElementById("demo").innerHTML = x.currentTime;
}
試一試» <事件對象