forked from bipbop/consulta-cpf-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.html
68 lines (61 loc) · 2 KB
/
sample.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset=utf-8 />
<title>Exemplo do tutorial Como Buscar Nomes de Pessoas Físicas a Partir de CPFs Usando a API do BipBop</title>
<style>
input {
font-size: 15px;
width: 300px;
}
</style>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.13.4/jquery.mask.js"></script>
<script src="//irql.bipbop.com.br/js/jquery.bipbop.min.js"></script>
</head>
<body>
<form>
<p>
<input type="text" name="cpf" id="cpf" placeholder="CPF"></input>
</p>
<p>
<input type="text" name="nascimento" id="nascimento" placeholder="Nascimento dd/mm/YYYY"></input>
</p>
<p>
<input type="text" name="nome" id="nome" placeholder="Nome" disabled="disabled"></input>
</p>
<p id="status"></p>
</form>
<script>
$(function(){
function validCPF (cpf) {
return cpf.match(/^\d{3}\.?\d{3}\.?\d{3}\-?\d{2}$/);
}
$("#nascimento").mask("00/00/0000");
$("#cpf").mask("000.000.000-00");
$('#cpf, #nascimento').on('input', function(){
var cpf = $("#cpf").val(),
nascimento = $("#nascimento").val();
if (validCPF(cpf) && /^\d{2}\/\d{2}\/\d{4}$/.test(nascimento)) {
$().bipbop("SELECT FROM 'BIPBOPJS'.'CPFCNPJ'", null, {
data: {
documento: cpf,
nascimento: nascimento
},
success: function(data) {
var nome = $(data).find("body nome").text();
var exception = $(data).find("header exception").text();
if (exception) {
exception = exception.replace(/, t/, '. T');
$('#status').text(exception);
} else {
$("#nome").val(nome);
}
}
});
}
});
});
</script>
</body>
</html>