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
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<button class="boutons" value="2000" id="CodeProduit1" >Envoyer</button>
<button class="boutons" value="5000" id="CodeProduit2">Envoyer</button>
<button class="boutons" value="10000" id="CodeProduit3">Envoyer</button>
<script>
const mes_boutons=document.querySelectorAll(".boutons");
console.log("Valeur de mes_boutons",mes_boutons);
for(var i = 0; i < mes_boutons.length; i++) {
mes_boutons[i].addEventListener("click", function(){
$.ajax({
url:'test.php',
type: 'POST',
data: {amount: this.value, productId: this.id,},
success: function (json_data) {
window.location.replace(json_data);
},
error: function() {
console.log("data not found");
}
});
});
};
</script>
</body>
</html> |