2015-12-06 22 views
0

在網站中嵌入視頻這些都是我已經盡我的代碼片段,但我只是得到我需要一個插件,我被陷在從桌面

<embed src="eria.mp4" height="50%" width="100%" controls> 
+0

代碼丟失。 –

+0

先添加代碼。 –

+0

代碼格式不正確。 –

回答

1

你不需要的錯誤消息HTML5中的任何插件。但語法是有點不同:

<video width="100%" height="50%" controls> 
    <source src="eria.mp4" type="video/mp4"> 
    Your browser does not support the video tag. 
</video> 
0

<embed>標記定義外部應用程序或交互內容(插件)的容器。簡單換言之,它需要一個插件來運行的外部應用程序是從您的失蹤瀏覽器。

使用HTML5視頻標籤代替

<video height="50%" width="100%" controls> 
    <source src="eria.mp4" type="video/mp4"> 
    <source src="eria.ogg" type="video/ogg"> 
Your browser does not support the video tag. 
</video>