代码改变世界

播放键盘数字

2020-12-03 21:15  qgbo  阅读(113)  评论(0编辑  收藏  举报
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>

        window.onload = function ()
        {
            document.onkeydown = function (event)
            {
                var msg = event.key;
                var url = "http://tts.baidu.com/text2audio?cuid=baike&lan=en&ctp=1&pdt=301&vol=9&spd=5&tex=" + encodeURI(msg);
                var n = new Audio(url);
                n.src = url;
                n.play();
            };
        }

    </script>
</head>

<body>
  
</body>

</html>