分享自定义标题,分享图标,分享描述演示代码
复制代码
- <button onclick="zhixing()" >分享</button>
- <script src="您的服务器URL/jsbridge-mini.js"></script>
- <script type="text/javascript">
- function zhixing() {
- var img = '';
- for(var i=0;i<document.images.length;i++){
- if(parseInt(document.images[i].width)>100 && parseInt(document.images[i].height)>100){
- img=document.images[i].src;
- break;
- }
- }
- var shareInfo={
- title : document.title,
- link : location.href,
- imgUrl: img,
- desc : document.querySelector(".指定页面元素").textContent.replaceAll("\n","").trim().substring(0,30),
- success: function() {
- jsBridge.toast("\u5206\u4eab\u6210\u529f");
- },
- cancel: function() {
- jsBridge.toast("\u53d6\u6d88\u5206\u4eab\u6216\u5206\u4eab\u5931\u8d25");
- }
- }
- jsBridge.share(shareInfo);
- }
- </script>
-
-
-
- 温馨提示:如果页面元素有多个元素请用[1]来进行指定元素
- document.querySelectorAll(".重复元素")[1].textContent.replaceAll("\n","").trim().substring(0,30)
复制代码
指定页面分享的图片,宽度和高度;
指定页面元素,取元素内文字字数;
|