You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
553 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Query</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<script>
$(document).ready(function() {
//alert('ok');
$.get("http://localhost/b1api/vol/liste", function(data, status){
console.log(data);
alert
(
"Vol : " + data.id_vol
+ "\n de : " + data.de
);
});
});
</script>
</body>
</html>