1. 程式人生 > >html網頁如何導入音樂(.wma)文件?

html網頁如何導入音樂(.wma)文件?

web mbed http 自動 自動播放 文件路徑 type vid com

在網頁
<head></head>之間加入如下代碼:
< meta name="renderer" content="ie-comp">
再在<body>
< embed hidden="true" type="video/x-ms-wmv" align="middle" autostart="1" height="45" width="600" loop="false" src="文件路徑"/>

說明:
<meta name="renderer" content="ie-comp"> 360瀏覽器的兼容模式
hidden="true" 隱藏
autostart="1"自動播放 為0不自動播放

html網頁如何導入音樂(.wma)文件?