一言

这里将会显示一句话

源代码

<script>
  fetch("https://v1.hitokoto.cn")
    .then((response) => response.json())
    .then((data) => {
      const hitokoto = document.getElementById("hitokoto_text");
      hitokoto.href = "https://hitokoto.cn/?uuid=" + data.uuid;
      hitokoto.innerText = data.hitokoto + "   ——" + data.from;
    })
    .catch(console.error);
</script>

Previous  Next

Loading...