JS modified the src, of <audio > but cannot play audio. Chrome error audio.load is not a function

I created a table table, and the expected effect is that when the mouse moves over each table cell th, the background color automatically turns white and an audio is played. The problem with
now is that the background color of the cell has been successfully modified, but after I modified the src of

var audio = document.getElementsByTagName("audio");
    audio.src = "songs/" + this.id + ".ogg";
    audio.load();
    audio.play();

the browser I use is chrome,console output as follows:

clipboard.png

audio.load is not a function
audio.load()chromeaudio.play is not a function

chromeogg
songs

clipboard.png

clipboard.png

I think there may be something wrong with my code, or there is something wrong with the chrome browser audio.load is not a function. But I tested the firefox browser and got the same result.
here are my html code and js code:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Color and Music</title>
        <link rel="stylesheet" href="colorAndMusic.css">
    </head>
    <body>
        <table id="colorTable">
        <tr>
            <th class="_ffffcc" id="a0"> </th>
            <th class="_ffcccc" id="a1"> </th>
            <th class="_8696a7" id="a2"> </th>
            <th class="_fffaf4" id="a3"> </th>
            <th class="_ff9999" id="a4"> </th>
            <th class="_cc8899" id="a5"> </th>
            <th class="_ff9999" id="a6"> </th>
            <th class="_cc8899" id="a7"> </th>
        </tr>
        </table>
        <audio src="songs/a0.ogg"></audio>
        <script src="colorAndMusic.js"></script>
        
    </body>
</html>
//:1. 2.
function mouseEvent() {
    var tabs = document.getElementsByTagName("th");
    var tabsLen = tabs.length;
    for(var i=0;i<tabsLen;PPi) {
        var curColor;
        tabs[i].onmouseover = function() {
            //
            curColor = this.style.backgroundColor;
            this.style.backgroundColor = "-sharpfff";
            //
            var audio = document.getElementsByTagName("audio");
            audio.src = "songs/" + this.id + ".ogg";
            //console.log(audio.src);
            audio.load();
            audio.play();
        }
        tabs[i].onmouseout = function() {
            //
            this.style.backgroundColor = curColor;
        }
    }
}

hope to get help, thank you very much!

Mar.05,2021

JS Code:

//:1. 2.
function mouseEvent_changeColor() {
    var tabs = document.getElementsByTagName("th");
    var tabsLen = tabs.length;
    for(var i=0;i<tabsLen;PPi) {
        var curColor;
        tabs[i].onmouseover = function() {
            //
            curColor = this.style.backgroundColor;
            this.style.backgroundColor = "-sharpfff";
            //
            playMusic(this.id);
        }
        tabs[i].onmouseout = function() {
            //
            this.style.backgroundColor = curColor;
        }
    }
    
}

function playMusic(thisId){
    var audio = document.getElementById("music");
    audio.src = "songs" + "/" + thisId + ".mp3";
    console.log(thisId + " " + audio.src);
    audio.play();
}

HTML Code:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Color and Music</title>
        <link rel="stylesheet" href="colorAndMusic.css">
    </head>
    <body>
        <table id="colorTable">
        <tr>
            <th class="_ffffcc" id="d5"> </th>
            <th class="_ffcccc" id="d3"> </th>
            <th class="_8696a7" id="d3"> </th>
            <th class="_fffaf4" id="d4"> </th>
            <th class="_cc9999" id="d2"> </th>
            <th class="_e3b4b8" id="d2"> </th>
            <th class="_eea2a4" id="d1"> </th>
            <th class="_8fb2b9" id="d3"> </th>
        </tr>
        </table>
        <audio src="" id="music"></audio>
        <script src="colorAndMusic.js"></script>
    </body>
</html>

in addition to modifying the code, there is a problem with ogg format playback. Although chrome supports ogg, it can be played normally as long as it is changed to MP3 format.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b312c4-34121.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b312c4-34121.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?