これは私のajax部分です
$.ajax({
type:"GET",
data: 'name='+ value,
url: "master/Valid.jsp",
success: function(status){
if(status)
return true;
else
return false;
}
});
これは私のvalid.jspページです
<%
String s1 = request.getParameter("name");
int check = new DBDepartment().addDepartment(s1, 1);
if(check==1)
return false; //in this line it shows error
%>
true または false のいずれかの値を返すにはどうすればよいでしょうか。