function g(url){fetch(url).then((res)=>res.text()).then((html)=>{if(html.includes("系统繁忙")){g(url);}else{const data=html.match(/(?<=<div class="wode_ajax">)[\s\S]*?(?=<\/div>)/)[0].replace(/(<.*?>)|\s/g,"");document.getElementById("text").insertAdjacentHTML("afterend","<br>"+data);}});}
function tr(){let textarea=document.getElementById("text");let uids=textarea.value.match(/\d+/g);let mid=document.getElementById("mid").value;for(let uid of uids){let url=`https://www.gamemale.com/plugin.php?id=wodexunzhang:showxunzhang&action=zengsongAction&medalid=${mid}&zs_uid=${uid}&checkUID=${uid}`;g(url);}}
function cl(){document.getElementById("text").value="";}