/** * * @authors Alone88 (im@alone88.cn) * @date 2018-12-18 10:07:19 * @version 0.1 */ var xhr = new XMLHttpRequest(); xhr.open('get', 'https://v2.jinrishici.com/one.json'); xhr.withCredentials = true; xhr.onreadystatechange = function () { if (xhr.readyState === 4) { var data = JSON.parse(xhr.responseText); // 处理示例 var gushici = document.getElementById('alone88'); var alone88 = data.data.content; } var typed = new Typed('#alone88', { strings: [alone88], typeSpeed: 100 }); }; xhr.send();