[JavaScript - (9) ] 이미지 원본사이즈에 맞게 새창 띄우기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<script>
function image_popup(filename) {
var url = filename;
console.log("url : ");
console.log(url);
var imgObj = new Image();
imgObj.src = "/resources/files/"+url+"";
imageWin = window.open("", "profile_popup", "width=" + imgObj.width + "px, height=" + imgObj.height + "px");
imageWin.document.write("<html><body style='margin:0'>");
imageWin.document.write("<a href=javascript:window.close()><img src='" + imgObj.src + "' border=0></a>");
imageWin.document.write("</body><html>");
imageWin.document.title = imgObj.src;
}
</script>
Color Scripter
|
'◽ HTML & CSS & JS, jQuery' 카테고리의 다른 글
[JavaScript - (10) ] setTimeout(function() { }, delay) : 시간 지연 함수, 몇 초 뒤 실행 // setInterval() : 반복 함수 (0) | 2019.09.17 |
---|---|
[jQuery - 오류] "getOutputStream()이 이미 호출되었습니다." (0) | 2019.09.16 |
[jQuery] 다음 API 주소(한글) ㅡ>> 좌표(위도, 경도) (0) | 2019.09.15 |
[jQuery - 기록] 오류 : Uncaught ReferenceError: ... is not defined - 파라미터의 스트링값이 명령어로 인식 될 시 (0) | 2019.08.30 |
[jQuery - 기능 - (9) ] .hide() / .show() 라디오 버튼 선택에 따른 div 보이기/숨기기 (0) | 2019.08.30 |
[jQuery - 기능 - (8) ] .change() - 작동 시 변경되는 이벤트 (0) | 2019.08.26 |
[HTML] <input>태그 값 못 쓰게 막기. readonly, disabled (0) | 2019.08.26 |