function initShare(data, callback) { M.client.invoke("ui", "setActionBtn", { type: "icon", content: "share" }, function () { M.client.invoke("other", "callShareWeb", data, callback); }) } initShare({ imgUrl: "https://y.gtimg.cn/music/common/upload/t_cm3_photo_publish/11.png?r=1508325520779", link: location.href, title: "分享标题", desc: "分享简介" })
M.client.invoke("other", "callShareWeb", ({ imgUrl: "https://y.gtimg.cn/music/common/upload/t_cm3_photo_publish/11.png?r=1508325520779", link: location.href, title: "分享标题", desc: "分享简介" })
// 初始化播放组件 var player = new QMplayer({ target: "auto" }); // 设置 target=music 时会拉起QQ音乐客户端进行播放 // 播放歌曲 player.play("003IPDsn4ZWb5H"); // 监听事件 player.on("play", function () { }) // 支持的方法:play、pause、toggle、playReady、on、off // 支持的事件:play、pause、ended、timeupdate、waiting、error