$(function () {
$.init();
$(document).on('click', '.albumImgs', function () {
var pic = $(this).parent().find(".albumImgs").map(function () {
return $(this).data("src");
}).get();
$.photoBrowser({
photos: pic,//注意此处是数组 []
type: 'popup'
}).open();
//myPhotoBrowserPopup.open();
});
});