itsm_ysm/src/main/webapp/temp/layerPopup2.html

45 lines
1002 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link href="/nlib/css/nlib.css" rel="stylesheet" type="text/css" />
<script src="/nlib/js/jquery/jquery.min.js"></script>
<script src="/nlib/js/nlib.js"></script>
</head>
<body>
<button name="btnShow" onclick="popPop2()">SHOW popPop2</button>
<script>
function popPop() {
$.ajax({
type: "post",
url: "https://seoul.nculture.org/nlib/code/listCodes.do",
}).done(function(response){
$("#myPop").html(response);
});
}
function popPop2() {
gotoInPop("https://seoul.nculture.org/nlib/code/listCodesPopup.do");
}
function gotoInPop(url) {
$("#myPop").show();
$("#NLIB_LAYERPOP").load(url);
}
</script>
&nbsp;<br>
&nbsp;<br>
<div id="myPop" style="z-index:10000000; display:blcok; margin-left:20px !important; position:relative; width:90%; height:auto; min-height:100px; max-height:500px; border:3px solid black !important; overflow:scroll; ">POP</div>
</body>
</html>