**BSL.ShareMultiImageToSome('data','descript')**
多图分享到微信好友。
***注***:安卓版本支持
| 参数 | 必填 | 说明 |
| --- | --- | --- |
| data | 是 | 字符串数组,大于1,小于等于9张图片。不能null. |
~~~
<script>
function SharedImg(){
var data = ["http://www.xxxx.cn/demo/img/share1.png",
"http://www.xxxx.cn/demo/img/share2.png",
"http://www.xxxx.cn/demo/img/share3.png",
"http://www.xxxx.cn/demo/img/share4.png"];
BSL.ShareMultiImageToSome(data);
}
</script>
<a href="#" onclick="BSL.SharedImg()">分享</a>
//多图分享非官方提供接口,可不申请权限。同样也没有回调。
~~~