视频完成时发生的事件 - 可能吗?
是否可以在网页上放置 flash/html5 视频,并且当视频完成后,它将运行 PHP 脚本?
Is it possible to have a flash/html5 video on a webpage, and when the video is done, it will run a PHP script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在 html5 播放器和 flash 播放器内部进行检查,以确定视频是否已停止播放,然后您应该能够通过多种方式调用 php 脚本。假设您有一个名为“test.php”的 php 文件,那么在 html5 中您将执行以下操作:
在 flash 中,情况有点不同,您可以尝试在 actionscript3 中执行类似以下操作:
You'd have to do a check inside both the html5 player and the flash player to determine if the video has stopped playing and then you should be able to call a php script through several ways. Let's say you have a php file called 'test.php' then in html5 you'd do the following:
In flash it's a bit different and you could try doing something like the following in actionscript3: