한국어
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> <!-- 완전한 HTML 코드--> <html > <head> <title> 이미지 브라우저</title> <script> function ViewImage(form) { photoHeight=form.height.value photoWidth=form.width.value var urlType=form.url.value var LocalurlType=urlType. 'http://')==-1 if(LocalurlType) urlType="file:///"+urlType win=window.open("","","width="+photoWidth+",height= "+ photoHeight+"") win.document.write("<html><head><title>찾고 싶은 사진</title></head><body>") win.document.write('<div style = "위치:절대;너비:'+photoWidth+';높이:'+photoHeight+';왼쪽:0px;top:0px">') win.document.write("<img src="+urlType+" width="+ photoWidth+ " height="+photoHeight+"></div></body></html>") win.document.close() } </script> </head> <body> <center> 원하는 내용을 입력하세요. 이미지가 로컬 컴퓨터에 있는 경우 찾아보기 버튼을 누르세요. <p> <form> <input type=file size=40 name=url> <p> Height:<input type=text name=height size= 3 value=300> 너비: <input type=text name=width size=3 value=250> </p> <input type=button value="이미지 표시" onclick="ViewImage(this.form )"> </p> 양식> </body> </html> <br><br><br> <p><font color=red>////저자: School of Software, Nanyang Institute of Technology, 렌 빈위 연락처: 0377-3114024,0373 -7916269 </font></p>