-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 799 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="lib/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("#botonenviar").click(function(){
$("#ajax").load("http://localhost:8080/grabarDB/grabarDB?nombrecliente="+encodeURI($("#nombrecliente").val())+"&telefonocliente="+encodeURI($("#telefonocliente").val())+"&emailcliente="+encodeURI($("#emailcliente").val()));
})
})
</script>
</head>
<body>
<input type="text" id="nombrecliente" placeholder="Nombre cliente"><br>
<input type="text" id="telefonocliente" placeholder="Teléfono"><br>
<input type="text" id="emailcliente" placeholder="Email cliente"><br>
<button id="botonenviar">Enviar</button>
<div id="ajax"></div>
</body>
</html>