我需要使用<iframe>
在浏览器中播放本地视频但是要求在 safari 浏览器中下载。它适用于所有其他浏览器,如Chrome,Mozilla等。
<html>
<head>
<title>Video</title>
</head>
<body style="margin:0px; padding:0px;">
<iframe width="100%" height="315" src="D:/Video/Video1.mp4" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen seamless></iframe>
</body>
</html>
有什么想法吗?
答案 0 :(得分:0)
从路径中删除驱动程序字母,它应该是:“/ Video / Video1.mp4”或“./Video/Video1.mp4”,假设该页面与“Video”文件夹位于同一文件夹级别。试一试,告诉我们。