How to automatically jump to the specified web page after the video is played?

for example, in the short video sent by Wechat, after playing, jump to the specified h5 page. Or add a button after the video and click to jump to the specified H5 page. Ask for expert advice. Whether there is existing software, or whether it can be implemented technically. Thank you very much!

Jun.30,2021

The instance on

http://www.w3school.com.cn/ta.
W3C monitors whether the video has finished playing.
ended attribute has corresponding events.

var aud = document.getElementById("myVideo");
aud.onended = function() {

//
};
Menu