테스트 사이트 - 개발 중인 베타 버전입니다

모달 창... 어떻게 띄우죠..? 채택완료

재아 9년 전 조회 12,837

해당 이미지는 sir에서 신고버튼을 누르면 나오는 창입니다.

 

모달창을 어떻게 띄우나요?

 


 

댓글을 작성하려면 로그인이 필요합니다.

답변 2개

채택된 답변
+20 포인트

http://jqueryui.com/dialog/">http://jqueryui.com/dialog/

여기 참고하시면 됩니다.

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

9년 전
아래와 같이 모달창을 만들어서 링크로 띄어주세요.
<!doctype html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<style type="text/css">
body {
 font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
 font-size: 62.5%;
}
</style>
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<div id="dialog" title="">
<p>내용</p>
</div>
</body>
</html>
로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

재아
9년 전
감사...

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인