//使用事件监听方式捕捉事件
Forguncy.Page.getCell("cell_video").bind("timeupdate",function()
{
var timeDisplay;
//用秒数来显示当前播放进度
timeDisplay = Math.floor(video.currentTime);
console.log(Math.floor(video.currentTime))
}
);
上面的写法,是不支持的,报错如下
JavaScript的写法是支持的,
//获取视频插件的单元格监听播放时间 cell_video
var video = document.getElementById('r0c0p_video');
video.addEventListener("timeupdate",function(){
var timeDisplay;
//用秒数来显示当前播放进度
timeDisplay = Math.floor(video.currentTime);
console.log(Math.floor(video.currentTime))
},false);
JavaScript的写法有个弊端, 不能使用单元格名称,一点要查看html的div 的ID, 设计器移动了单元格位置,还需要去修改它。
|