html5中的可下载链接

时间:2015-03-19 06:51:14

标签: html5 video

我正在尝试以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>

1 个答案:

答案 0 :(得分:0)

您可以使用target属性。通常,它将在同一帧中打开。

也许如果你添加_self它会起作用:

<a href="link" target="_self">Link</a>

更多信息:http://www.w3schools.com/tags/att_a_target.asp