js弹出图片原图效果

1.将js方法独立出来common.js

function openwin(src){
       var basePath = document.getElementById("basePath").value;
       src = basePath + src;
       //alert(src);
       OpenWindow=window.open("","newwin",",toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no");
       //写成一行
       OpenWindow.document.write("<TITLE>查看图片</TITLE>");
       OpenWindow.document.write("<BODY BGCOLOR=#ffffff>");
       //OpenWindow.document.write("<h1>Hello!</h1>");
       OpenWindow.document.write("<img src=‘"+src+"‘ />");
       OpenWindow.document.write("</BODY>");
       OpenWindow.document.write("</HTML>");
       OpenWindow.document.close();
   }

2.在需要调用的jsp嵌入

<%
String basePath = request.getScheme() + "://" + request.getServerName() +":"+ request.getServerPort() + request.getContextPath() + "/";
%>
<input type="hidden" value="<%=basePath%>" id="basePath" />
<script language="javascript" type="text/javascript" src="<%=basePath %>js/biz/common.js"></script>
<a href="javascript:void(0);" onclick="openwin(‘${mem.idCard}/‘);" title="点击查看原图"><img src="${mem.idCard}/" width="500" height="360"/></a>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。