html中视频播放完后可以跳到另一个html

2:jquery 的例子如下
$(document).ready(function(){
$("#audioId").bind('ended', function(){

location.href="other.html";
});
});

原文地址:https://www.cnblogs.com/mailan/p/4972123.html