博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
layui 表格点击图片放大
阅读量:5102 次
发布时间:2019-06-13

本文共 832 字,大约阅读时间需要 2 分钟。

表格

,cols: [[ //表头    {checkbox: true,fixed: true}    ,{type: 'numbers', title: 'ID', sort: true,width:80}    ,{field: 'product_name', title: '名称'}    ,{field: 'product_description', title: '描述'}    ,{        title: '图片'        ,align: "center"        ,width:100        ,templet: function (d) {            return '
'; } } ,{field: 'product_url', title: '链接'} ,{field: 'remark', title: '备注'} ,{field: 'created_at', title: '添加时间'} ,{fixed: 'right', width: 220, align:'center', toolbar: '#options'}]]

 

 

JS

/** * @param e 图片对象 */function showBigImage(e) {    layer.open({        type: 1,        title: false,        closeBtn: 0,        shadeClose: true, //点击阴影关闭        area: [$(e).width + 'px', $(e).height + 'px'], //宽高        content: ""    });}

 

转载于:https://www.cnblogs.com/Skrillex/p/11411339.html

你可能感兴趣的文章
JSP:Cookie实现永久登录(书本案例)
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
linux--GCC用法
查看>>
Ubuntu下安装MySQL及简单操作
查看>>
OWIN是什么?
查看>>
前端监控
查看>>
centos6.5 mysql忘记登入密码
查看>>
Trusted Execution Technology (TXT) --- 启动控制策略(LCP)篇
查看>>
clipboard.js使用方法
查看>>
绘图库:Matplotlib
查看>>
0906第一次作业
查看>>
Ceph Monitor基础架构与模块详解
查看>>
dbca:Exception in thread "main" java.lang.UnsatisfiedLinkError: get
查看>>
hdu 1232 畅通工程(并查集)
查看>>
移动开发平台-应用之星app制作教程
查看>>
jquery validate使用笔记
查看>>
主要的几个脑网络——整理自eegfmri的博客
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
CABasicAnimation animationWithKeyPath Types
查看>>