美文网首页程序员
MUI相册图片多选

MUI相册图片多选

作者: 全村的希望iOS | 来源:发表于2018-01-24 18:29 被阅读0次

    // 从相册中选择图片

    plus.gallery.pick(function(e) {

    //相册选择清空数组从新放

    PICTURES = [];//装图片路径的数组

    lfs = e.files;//记录相册选中的图片、标记

    $.each(e.files, function(index, path) {

    PICTURES.push(path)//图片的路径

    });

    /*产品图纸*/

    console.log("path======>" + PICTURES);

    }, function(e) {

    console.log('取消选择图片');

    }, {

    filter: 'image',

    multiple: true,

    maximum: 3,

    selected: lfs,

    system: false,

    onmaxed: function() {

    plus.nativeUI.alert('最多只能选择3张图片');

    }

    }); // 最多选择3张图片

    相关文章

      网友评论

        本文标题:MUI相册图片多选

        本文链接:https://www.haomeiwen.com/subject/kizuaxtx.html