Ich verwende jQuery zur Preisberechnung. Hier ist ein kleiner Ausschnitt aus meinem JavaScript:
// Prices: radio
var curLam = "gloss";
$("input[name=lamination]").click(function () {
var gloss = 5;
var matt = 6;
if ($(this).val() == 'gloss' && curLam != 'gloss') {
$('#prices span').text(parseInt($('#prices span').text()) + gloss - matt);
curLam = 'gloss';
console.log('1');
}
if ($(this).val() == 'matt' && curLam != 'matt') {
$('#prices span').text(parseInt($('#prices span').text()) - gloss + matt);
curLam = 'matt';
console.log('2');
}
$("#prices span").each(function () {
var $priceValue = $(this);
})
});
Dies prüft, ob eine matte oder glänzende Oberfläche ausgewählt wurde, und fügt dann den Preis in das Feld span
innerhalb der prices
div
Tag.
Ich muss wissen, wie ich diesen Preiswert einer Variablen zuweisen kann, die dann an PHP für meinen Einkaufswagen weitergegeben werden kann.