BocaSpanky
Mitglied
//JQuery
Hi,
Ich würde einen Operator via data auslesen (data-amount):
Jetzt würde ich gern ohne eine if else Anweisung eine bestimmte Variable ++ oder --.
Leider weiß ich nicht nach was ich genau googlen soll.
So in etwa:
Hi,
Ich würde einen Operator via data auslesen (data-amount):
HTML:
<i class="cs-amountIcon far fa-plus" data-amount="++" title="%text_Titel_Menge_Plus%"></i>
<i class="cs-amountIcon far fa-minus" data-amount="--" title="%text_Titel_Menge_Minus%"></i>
Javascript:
var operator = $(this).data('amount');
Jetzt würde ich gern ohne eine if else Anweisung eine bestimmte Variable ++ oder --.
Leider weiß ich nicht nach was ich genau googlen soll.
So in etwa:
Javascript:
var amount = $('.amountInput').val();
amount[operator];
$('.amountInput').val(amount);