在按钮中隐藏视频,单击后是否在同一按钮中打开视频 window?

Hide a video in a button, upon click have the video open in the same window?

 <div class="learnmore">
    <a href="https://linktovideo"    target="_self"
 onclick="window.open('https://linktovideo','_self','width=600,height=600');
 return false;" class="learn-btn">
     Watch Video
     </a> 
 </div>

我还在学习jQuery,但目前这还在新window中打开link。我以为应用“_top”属性会在当前页面上打开 window。 target_top 与 jQuery 不兼容还是我想多了,谢谢堆栈的任何帮助!

您是否有特定原因尝试使用 jquery 或 javascript 来完成此任务?我相信简单的 html 代码会得到你想要的。

<div class="learnmore">
    <a href="https://d25ixnv6uinqzi.cloudfront.net/year3/uotw74.3.mp4"  target="_self" class="learn-btn">
     Watch Video
     </a> 
 </div>