loadCms_d731402650a84beea0dec871fc2f219c(); function loadCms_d731402650a84beea0dec871fc2f219c() { let xhr_param_d731402650a84beea0dec871fc2f219c = "mode=view_cms_ajax&cms=text&vk=d731402650a84beea0dec871fc2f219c&tk=aa82e3e80e4b4dc797336941a3face65"; let url_param_d731402650a84beea0dec871fc2f219c = new URLSearchParams(window.location.search); let tk_d731402650a84beea0dec871fc2f219c = url_param_d731402650a84beea0dec871fc2f219c.get("tk"); if (null !== tk_d731402650a84beea0dec871fc2f219c && "" !== tk_d731402650a84beea0dec871fc2f219c) { xhr_param_d731402650a84beea0dec871fc2f219c += "&tk="+tk_d731402650a84beea0dec871fc2f219c; } let xhr_d731402650a84beea0dec871fc2f219c = new XMLHttpRequest(); xhr_d731402650a84beea0dec871fc2f219c.open("POST", "https://cms.a-pollo.jp/user/output/"); xhr_d731402650a84beea0dec871fc2f219c.setRequestHeader("content-type", "application/x-www-form-urlencoded;charset=UTF-8"); xhr_d731402650a84beea0dec871fc2f219c.send(xhr_param_d731402650a84beea0dec871fc2f219c); xhr_d731402650a84beea0dec871fc2f219c.onreadystatechange = function() { if(xhr_d731402650a84beea0dec871fc2f219c.readyState === 4) { if(xhr_d731402650a84beea0dec871fc2f219c.status === 200) { if (!xhr_d731402650a84beea0dec871fc2f219c.responseText) { alert("誤ったURLが設定されている可能性があります。ご確認ください。"); return; } let data = JSON.parse(xhr_d731402650a84beea0dec871fc2f219c.responseText); let elm = document.getElementById('cms-text-d731402650a84beea0dec871fc2f219c-area'); elm.innerHTML = data.html; Array.from(elm.querySelectorAll("script")).forEach(oldScript => { const newScript = document.createElement("script"); Array.from(oldScript.attributes) .forEach( attr => newScript.setAttribute(attr.name, attr.value) ); newScript.appendChild(document.createTextNode(oldScript.innerHTML)); oldScript.parentNode.replaceChild(newScript, oldScript); }); } else { console.log("status:"+xhr_d731402650a84beea0dec871fc2f219c.readyState); } } } }