我正在尝试编写一个 jQuery 脚本,每当在某个页面上单击链接时,都会将视频附加到正文中,播放视频,然后它会转到链接的预期目标。
到目前为止,这就是我所拥有的:
HTML
<body>
<div id="videoHolder">
<a href="http://www.google.com">Google, as an example</a>
</div>
</body>
jQuery
window.onbeforeunload=function(event) {
$("#videoHolder").html(
'<video width="600" height="600" autoplay="autoplay">' +
'<source src="images/doors.mp4" type="video/mp4"></source>' +
'</video>');
setTimeout('window.location.href=' + $('a').attr(href), 5000);
}