async function emsFetch(url , param){ try { var _param = ''; if(param){ _param = param; } var response = await fetch(url + '?' + _param); const resText = await response.text(); return resText; } catch (error) { console.log('Ems Fetch Error:' + url); } } (async function(){ let current_Script = document.currentScript; if(typeof $ems === 'undefined'){ const jQueryTemp = await emsFetch('https://www31.easy-myshop.jp/ems/js/jquery-2.2.4.min.js'); eval(jQueryTemp); } (function($){ current_Script.insertAdjacentHTML('afterend', '
4.0
'); }(jQuery)); null })();