Cute Happy Ghost
본문 바로가기
Front/Html, css,jsp

팝업창 만들기

by JENN_tech7 2021. 1. 4.
728x90
SMALL

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<img src="../images/popup.jpg" width=350 height=500 usemap="#popup" alt="event page">
<map name="popup" id="popup">
</map>
<input type="button" value="닫 기" onclick="self.close();" />
</body>
</html>




<script>
	window.open("../popup/popup.jsp", "popup", "width=365, height = 550, left = 0, top=0")
</script>

이 팝업소스는 안쓰게 됐지만 언젠간 이런 간단한 소스도 필요할거라 생각돼서 올림..

sciprt는 띄우고싶은 홈페이지에 쓰고 본문소스는 새로운 파일로

728x90
LIST

댓글