모달 창... 어떻게 띄우죠..?
본문
해당 이미지는 sir에서 신고버튼을 누르면 나오는 창입니다.
모달창을 어떻게 띄우나요?
답변 2
아래와 같이 모달창을 만들어서 링크로 띄어주세요.
<!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>
답변을 작성하시기 전에 로그인 해주세요.