1. 程式人生 > >HTML中播放聲音的方法彙總

HTML中播放聲音的方法彙總

方法1:

使用 <embed> 元素,將mp3檔案嵌入html中

原始碼如下:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>
<embed height="100" width="100" src="儲存在本地的mp3檔案.mp3" />


  </body>
</html>

方法2:

使用 <object> 元素

原始碼如下:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>
<object height="100" width="100" data="儲存在本地的mp3檔案

.mp3"></object>
  </body>
</html>

方法3:

使用超連結

<a href="儲存在本地的mp3檔案.mp3">Play the sound</a>

方法4:

<video src="儲存在本地的ogg檔案.ogg" width="100" height="100" controls="controls">   
你的瀏覽器不支援HTML5視訊功能
</video>

注意:IE瀏覽器不支援OGG格式的視訊。