使用原生的js实现分享功能,代码非常精简

  分享一个原生的js实现移动端分享功能,希望大家喜欢。

兼容性:

 实现代码:

function share(){
if (!navigator.share) {
alert("您当前浏览器不支持分享!");
} else {
navigator.share({
   title: '{$title}',
   text: '{$introduce}',
   url: window.location.href
});
}
}

  执行:

<a onclick="share()">分享</a>

  这样就搞定了,效果还不错哦!

 

地址:企业安全生产管理规章制度_醉学网 (nongpin88.com)

posted @ 2023-09-15 22:05  圆柱模板  阅读(129)  评论(0编辑  收藏  举报