File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<center><button onclick="rejectTest()">rejectTest</button></center>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<script>
function rejectTest() {
var json = {"Phone" : "010-8787-2615", "Insert_date" : "2022-05-18 18:01:32", "Call_id" : "0808800858"};
$.ajax({
url: "/mjonRejectReceive.do",
type:"post",
data: JSON.stringify(json),
contentType: "application/json",
success: function(returnData, code) {
if(code = "success") {
alert("송신완료");
} else {
alert("ERROR!!!!")
}
},
error: function() {
alert("error");
}
})
}
</script>