/** * 点击图片弹层(layer)显示 * @param src 图片的链接地址 */ function showImg(src) { layer.open({ type:1, closeBtn: 2, title:false, area: '500px', shadeClose: true, content: '<div style="max-height: 500px;overflow: hidden;width: 500px;"><img width="100%" src="'+ src +'"></div>' }); }