在线音乐搜索

在线音乐搜索


<script>
    document.getElementById("searchForm").addEventListener("submit", function(event) {
        event.preventDefault();
        var searchInput = document.getElementById("searchInput").value;
        searchMusic(searchInput);
    });

    function searchMusic(searchInput) {
        var xhr = new XMLHttpRequest();
        xhr.open("GET", 'https://dataiqs.com/api/netease/music/?type=songid&id=' + searchInput, true);
        xhr.onload = function() {
            if (xhr.status === 200) {
                var response = JSON.parse(xhr.responseText);
                displayResults(response);
            }
        };
        xhr.send();
    }

    function displayResults(response) {
        var searchResults = document.getElementById("searchResults");
        searchResults.innerHTML = "";

        if (response.length > 0) {
            response.forEach(function(result) {
                var songName = result.name;
                var artistName = result.artist;
                var songId = result.id;

                var resultDiv = document.createElement("div");
                resultDiv.innerHTML = '<p>歌曲: ' + songName + '</p><p>歌手: ' + artistName + '</p><p>歌曲 ID: ' + songId + '</p>';
                searchResults.appendChild(resultDiv);
            });
        } else {
            searchResults.innerHTML = "没有找到结果。";
        }
    }
</script>
在线音乐搜索播放下载 - 搜索歌曲和歌手,立即播放!

原文地址: https://www.cveoy.top/t/topic/pdyP 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录