给网站添加随机一句,一言API调用

查看 384
回复 0
那座城 发表于 2021-4-21 22:17 显示全部楼层

手机扫码访问此页面


关注我们微信公众号

这是一个创建于 1309 天前的主题,其中的信息可能已经有所发展或是发生改变。
<div class="hitokoto" style="
    text-align: center;
    color: grey;
"><script type='text/javascript'>
$.get("https://v1.hitokoto.cn/",function(data,status){
    if (status == 'success'){
        $('.hitokoto').text(data.hitokoto+"By:"+data.from);
    }else{
        $('.hitokoto').text('获取出错!');
    }
});
</script>
</div>
引用以上代码

或者以下方法

添加自定义JS,这个复制到Javascript里面保存
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
    })
    .catch(console.error)
然后在主页或者显示的地方落段
<p id="hitokoto"><a href="#" id="hitokoto_text">:D 获取中...</a></p>
相关帖子
精彩回复
还没有人回复此帖!

您需要登录后才可以回帖

登录

Or

上一页 在线咨询 快速回复 返回列表