class="share"
data-sharebox="true"
data-desc="desc"
data-title="title"
data-img="imgurl"
href="#">
分享按钮的onclick:
$(".share").attr('data-sharebox')
$(".share").attr('data-desc')
$(".share").attr('data-title')
$(".share").attr('data-img')
当然,建议a标签加一个id来唯一标识
如:
<a
class="share"
id="share_1"
data-sharebox="true"
data-desc="desc"
data-title="title"
data-img="imgurl"
href="#">
则下面就用:
$("#share_1").attr('data-sharebox')
微信内置浏览器有jssdk,同时微信也提供原生sdk给其他app调用,uc调用的就是微信原生sdk。同时uc也提供js接口给web开发者,这样你可以在页面上放一个按钮,自定义分享内容,通过点击直接唤起微信分享,而不是点uc的菜单-分享-微信3次才能完成。前提是你的公众号已打开onMenuShareTimeline权限wx.config({
debug: true,
appId: "你的APPID",
timestamp: "xxx",
nonceStr: "xxx",
signature: "xxx",
jsApiList: [ 'onMenuShareTimeline', ] //onMenuShareTimeline你要的方法
})