我正在尝试以html格式下载音频/视频文件,但它会在另一个标签页中打开。
我使用锚标记链接到两个实例中的文件。
<div id="video">
<figure>
<video src="video/myfile.mp4"
poster="images/sackboy.jpg"
type='video/mp4;codecs="avc1.42E01E, mp4a.40.2"'
preload
loop
controls
none
width="600"
height="300"
id="videotag">
</video>
<figcaption>
<em>This video meant to enlighten people on games and how they are made.</em>
</figcaption>
<a href="http//:video/myfile.mp4">Download</a>
</figure>
</div>
答案 0 :(得分:0)
您可以使用target属性。通常,它将在同一帧中打开。
也许如果你添加_self它会起作用:
<a href="link" target="_self">Link</a>