1. 表格塞图片
,{title: ‘图片‘, width:120, templet: function(d) { return ‘<div onclick="show_img(this)" ><img src="‘+d.image_path+‘" ‘ + ‘ width="50px" height="50px"></a></div>‘; }}
2. 图片放大
//显示大图片 function show_img(t) { var t = $(t).find("img"); //页面层 layer.open({ type: 1, skin: ‘layui-layer-rim‘, //加上边框 area: [‘80%‘, ‘80%‘], //宽高 t.width() t.height() shadeClose: true, //开启遮罩关闭 end: function (index, layero) { return false; }, content: ‘<div style="text-align:center"><img src="‘ + $(t).attr(‘src‘) + ‘" /></div>‘ }); }
原文地址:https://www.cnblogs.com/cjjjj/p/10453517.html
时间: 2024-10-09 09:48:05