layer图片预览

layui.use(['jquery','layer','form'],function(){
    var $=layui.jquery
        ,layer=layui.layer
        ,form=layui.form

    $('form img').click(function(){
        console.log($(this).attr('src'))
        var imgSrc=$(this).attr('src')
        layer.open({
            type:1
            ,title:false
            ,closeBtn:0
            ,skin:'layui-layer-nobg'
            ,shadeClose:true
            ,content:'<img src="'+imgSrc+'" style="max-height:600px;max-width:100%;">'
            ,scrollbar:false
        })
    })
})

猜你喜欢

转载自blog.csdn.net/sr_www/article/details/81394340
今日推荐