在Chrome 55 beta中,支持了Web Share API,可以看看基本的使用方法,看起来还是很简单的,可以传入标题,介绍文本,还有url。
嘿嘿,好像没有看到可以传入配图,不然的微信API可以直接这样了。
navigator.share({
title: document.title,
text: "w3ctech是一个好网站",
url: window.location.href
}).then(() => console.log('分享成功!'))
.catch(() => console.log('分享失败?', error));
这个API有几条简单的要求:
扫码关注w3ctech微信公众号
共收到1条回复