1.function openwin(url) {//alert(url);var iHeight=550;var iWidth=550;var iTop = (window.screen.availHeight-30-iHeight)/2; //获得窗口的垂直位置;var iLeft = (window.screen.availWidth-10-iWidth)/2; //获得窗口的水平位置;OpenWindow=window.open("", "newwin", "height="+iHeight+", width="+iWidth+",top="+iTop+",left="+iLeft+",toolbar=no,menubar=no,scrollbars=no, resizable=yes,location=no, status=no");//写成一行OpenWindow.document.write("<TITLE>图片</TITLE>")OpenWindow.document.write("<BODY BGCOLOR=#ffffff>")//OpenWindow.document.write("显示图片")OpenWindow.document.write("<img src="+url+" /> ")OpenWindow.document.write("</BODY>")OpenWindow.document.write("</HTML>")OpenWindow.document.close()}<input type="button" value="查看"οnclick="openwin('ftp://${ftpUserName}:${ftpPassword}@${ftpHost}/${idcard}')" class="btn">对应的网址:http://www.cnblogs.com/stswordman/archive/2006/06/02/415853.html2.图片大小可根据窗口适应var oImg=new Image(); //创建图像对象oImg.src=url; //设置图像源oImg.οnlοad=window.open(url,"","width="+iWidth+",height="+iHeight+",top="+iTop+",left="+iLeft+",toolbar=no,menubar=no,scrollbars=yes, resizable=yes,location=no, status=no,titlebar=no");
<button onClick="fiximgwin('ftp://huofenghuang:huofenghuang@192.168.9.156/phenix/contract/2016/03/28/1459137070810685.jpg')"> 打开图片</button>
点击按钮显示图片的两种方法
最新推荐文章于 2023-12-10 18:33:55 发布