<audio > display invalid sources in ie browsers?

The src address of

html:
 <audio class="mark_voice" src="" controls="controls"></audio>

JS:
function getInfo(id) {

    $.ajax({
        type: "post",
        url: "/web/oneillegalMessages",
        dataType: "json",
        data: { "id": id },
        async: false,
        success: function(data) {
            var list = data.data;
            if (data.flag == "success") {
                $(".mark_voice").attr("src", list.wav);
            }
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            console.log(XMLHttpRequest.status);
            console.log(XMLHttpRequest.readyState);
            console.log(textStatus);
        }
    })
}
Apr.16,2021

IE 11 does not support wav format. It is recommended to switch to mp4 sources.

clipboard.png

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-1b3e96b-2b78b.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-1b3e96b-2b78b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?