html5播放音乐

来源:互联网 发布:下载cctv软件 编辑:程序博客网 时间:2024/06/07 10:44

静态页面  。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Audio.aspx.cs" Inherits="Audio" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    
    <div>
        <button onclick="clickA()">
            播放/暂停</button>
        <audio id="audio" src="audio/郑智化 - 水手.mp3" >你的浏览器不支持</audio>
    </div>
    <script type="text/javascript">

        var aa = document.getElementById("audio");
        function clickA() {

            if (aa.paused) {
                aa.play()

            } else {
                aa.pause();
            }
        }
    </script>
 
</body>
</html>


0 0
原创粉丝点击