开发者问题收集

视频当前时间显示未定义

2016-12-11
630

您好,我有动态视频,我尝试获取当前视频时间,但似乎没有得到定义,我不知道为什么。我使用按时更新 javascript 事件触发一个函数,但是当我提醒此 var ok=$(e).attr('id'); 时,我获得了视频 id,但我不知道为什么当我尝试获取视频当前时间时,我得到的值未定义,这是我的代码,不知道我哪里出错了。

      <script type='text/javascript'>
 function men(e){
    var ok = $(e).attr('id');
     var ol = $(e).attr('id');
    // alert(ol[0].currentTime); --- GIVES ME UNDEFINED
    $.ajax({
          type : 'POST',
           url : 'updatetime.php', 
          data :  {ok: ok, om: om}, 
            success : function(r)
           {

           }
    });
 }
 </script>

     <?php
$tl="channel";
$ooa="playing";
$played="played";
$timeline = mysqli_query($con, "SELECT * FROM plays WHERE streamers_type ='$tl' AND played !='$played' GROUP BY streamers_id ORDER BY id ASC") or die ();
    while($row = mysqli_fetch_array($timeline)) {
    $id = $row['id'];
    $file1 = $row['file1'];
    $video_name = $row['video_name'];
    $video_type = $row['video_type'];
    ?>  

  <video class="uopi spinal" id="<?php echo $id ?>"  style="height:180px; width:100%!important;" autoplay muted onended="run(this)" ontimeupdate="men(this)"><source src="plays/<?php echo $file1 ?>" type="<?php echo $video_type ?>"></video>

            <?php } ?>
1个回答

您正在做的是

028137482

但是 .attr('id') 返回字符串,元素的ID,哪个显然没有 CurrentTime 属性。

尝试做

348589404

而不是

adeneo
2016-12-11