liweibiao

Results 1 comments of liweibiao

function clearInput() { const talkSearch = document.getElementById('talkSearch'); talkSearch.value = ''; } // 获取 Memos 总条数 function getTotal() { var totalUrl = "https://memos网址/api/memo/stats?creatorId=101"; fetch(totalUrl).then(response => { return response.json(); }).then(data => {...