English 中文(简体)
使用AJAX电话的视频联署材料管制
原标题:Video JS controls with AJAX call

日安! 日安! 日安! 日安!

我试图创建一个网页,当用户点击某东西(被点击时的 Javascript 触发) 时, ajax 请求会被发送到服务器上, 从而触发一个 php 文件, 以生成 html, 指定给 div 的.innerHTML 。

一切正常,除了视频没有控制器(如播放按钮、全屏等)之外,一切正常。

没有 AJAX 的呼叫, 一个简单的硬码版本, 显示的视频与控件完全吻合, 所以和 AJAX 有关。 我正在使用视频 JS 播放器, 据我所知, 代码没有需要执行的脚本 。

这是我的php代码...

<?php

    echo  <video id="example_video_1" class="video-js vjs-default-skin" controls preload="auto" width="720" height="528" data-setup= {"controls":true} ><source src="videos/ .$_GET["fn"]. " type= video/ogg /></video> ;

?>

我相信这跟这个事实有关 射手不执行AJAX的电话 但我不确定...

谢谢!

最佳回答

VideoJS 在您 AJAX 结果标记尚未装入时检查页面加载的视频标记。 您需要先在视频呼叫返回后手动检查 VideJS 。

var myPlayer = _V_("example_video_1");

详情见视频JS API文件:http://vievyjs.com/docs/api/

问题回答

暂无回答




相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

热门标签