Diferencia entre revisiones de «Calculators.js»
Ir a la navegación.
Sin resumen de edición |
Sin resumen de edición |
||
(No se muestran 11 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
ui = { | ui = { | ||
initPage: function () { | initPage: function () { | ||
//Calculator | //Calculator | ||
var newInput = "<input type='number' class='input_amount target' value='1' max='50000' min='' />"; | var newInput = "<input type='number' class='input_amount target' value='1' max='50000' min='' />"; | ||
Línea 9: | Línea 7: | ||
var amountsArray = []; | var amountsArray = []; | ||
$('.item_number').each(function(index, element){ | $('.item_number').each(function(index, element){ | ||
amountsArray[index] = parseInt($(element).text); | amountsArray[index] = parseInt($(element).text()); | ||
}) | }) | ||
$(".input_amount").on('change', function() { | |||
var inputValue = $('.input_amount').val(); | |||
if(inputValue>9999){ | |||
$('.input_amount').val(9999); | |||
inputValue = 9999; | |||
} | |||
if (!isNaN(inputValue) && inputValue > 0) { | |||
$('.item_number').each(function(index, element){ | $('.item_number').each(function(index, element){ | ||
$(element).text(amountsArray[index] * inputValue); | $(element).text(amountsArray[index] * inputValue); | ||
}) | }); | ||
}else{ | } else { | ||
$('.item_number').each(function(index, element){ | $('.item_number').each(function(index, element){ | ||
$(element).text(amountsArray[index]); | $(element).text(amountsArray[index]); | ||
}) | }); | ||
} | } | ||
}); | }); | ||
}, | }, | ||
Revisión actual - 23:45 16 nov 2023
ui = {
initPage: function () { //Calculator var newInput = "<input type='number' class='input_amount target' value='1' max='50000' min= />"; ($('#input_amount')).html(newInput); var amountsArray = []; $('.item_number').each(function(index, element){ amountsArray[index] = parseInt($(element).text()); }) $(".input_amount").on('change', function() { var inputValue = $('.input_amount').val(); if(inputValue>9999){ $('.input_amount').val(9999); inputValue = 9999; }
if (!isNaN(inputValue) && inputValue > 0) { $('.item_number').each(function(index, element){ $(element).text(amountsArray[index] * inputValue); }); } else { $('.item_number').each(function(index, element){ $(element).text(amountsArray[index]); }); } }); }, init: function () { ui.initPage(); }
}
ui.init();