Quellcode durchsuchen

设置播放列表下一个

minitiger vor 9 Jahren
Ursprung
Commit
f763538a2c
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
  1. 4 0
      VisualInspection/js/util/video.js

+ 4 - 0
VisualInspection/js/util/video.js

@@ -63,4 +63,8 @@ function callFunc(func, param){
     var origin = window.location.protocol + '//' + window.location.host;
     var origin = window.location.protocol + '//' + window.location.host;
     event.initMessageEvent (func, true, true, param, origin, 1234, window, null);
     event.initMessageEvent (func, true, true, param, origin, 1234, window, null);
     document.dispatchEvent (event);
     document.dispatchEvent (event);
+}
+
+function playNext(index){
+    $("#video_list").val(index);
 }
 }