JS点击图片放大预览

来源:互联网 发布:知乎大学生推荐书单 编辑:程序博客网 时间:2024/05/19 19:31
<img id='photoimgId'  class="imgstyle" src="${fj.contentimg}" style="width:77px;height:77px;background-size:cover;z-index:999;" onclick="openFile(this,'photoimgId')"></img>
         function openFile(e,photoimgId){            var imgSrc = "";            imgSrc = $(e).attr("src");            //imgSrc = imgSrc.replace(/url\("/,"");//去掉 url("            //imgSrc = imgSrc.replace(/"\)/,"");//去掉后面的 ")            imgSrc = imgSrc.replace(/\"/g, "");            var pb = $.photoBrowser({                items : [ imgSrc ],                onClose: function() {                  console.log("onClose", this);                }            });            pb.open();         }
原创粉丝点击