Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

222
Vistas
How do I get the number of days from 2 user inputs and then multiply it with another user input which is amount in JavaScript?

I'm trying to create a simple fine calculator, I have two user input dates and a user input amount. I need to subtract the 2 dates and then multiply the number of days by the fine amount. I went through a bunch of videos about dates, but none of them ever take user input. I am very new to javascript so I don't know why it won't show me my result. Could someone tell me what's wrong with my code?

if (isset($_POST['calcDiff'])) {
  $("#bdate").datetimepicker({
    timepicker: false,
    format: 'y-m-d'


  });

  $("#rdate").datetimepicker({

    timepicker: false,
    format: 'y-m-d'
  });

  function calcDiff() {

    var bdate = new Date($("#bdate").val());
    var rdate = new Date($("#rdate").val());
    var amount = $('#amount').val();

    var timeDifference = rdate.getTime() - bdate.getTime();
    var milliSecondsInOneSecond = 1000;
    var secondInOneHour = 3600;
    var hourInOneDay = 24;

    var daysDiff = timeDifference / (milliSecondsInOneSecond * secondInOneHour * hourInOneDay);
    var fine = daysDiff * amount.val();
    alert(fine);
  }
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form name="finecalc" action="" method="post">
  <p>
    Borrowed date
    <input type="date" name="bdate" id="bdate" required="required" value="<?php echo $bdate; ?>" />
  </p>
  <p>
    Return date</b>
    <input type="date" name="rdate" id="rdate" required="required" value="<?php echo $rdate; ?>" /> <b>
    </p>
     <p>Enter fine amount per day</b>
    <input type="text" name="amount" size="10"><b>
       </p><button onclick="calcDiff()">Calculate Fine</button><p id="display"></p>
</form>

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

var amount = $('#amount').val();
...
var fine = daysDiff * amount.val();

Maybe no need to use amount.val()?

var fine = daysDiff * amount;

Also, remove the comma in this line:

var daysDiff = timeDifference / (, milliSecondsInOneSecond * secondInOneHour * hourInOneDay);
about 4 years ago · Juan Pablo Isaza Denunciar

0

First you need to calculate difference between 2 dates and total number of days

const date1 = new Date('7/13/2010');
const date2 = new Date('12/15/2010');
const diffTime = Math.abs(date2 - date1);
const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); // calculate number of days 
console.log(diffDays + " days");
var amount = $('#amount').val(); //store Amount value into amount variable

Then calculate fine: var fine = daysDiff * amount;

about 4 years ago · Juan Pablo Isaza Denunciar

0

You can get the value from each input, then actually just subtract the dates to get the epoch difference and with that number you can convert it to days and multiply by the fine.

I added a JS that does just that.

function calcDiff(){
  const date1 = new Date(document.querySelector('#bdate').value);
  const date2 = new Date(document.querySelector('#rdate').value);
  const penalty = document.querySelector('input[name="amount"]').value;
  const diff_ms = date2 - date1;
 // ms -> s -> min -> h -> days
  const days = diff_ms / 1000 / 60 / 60 / 24; 
  const amount_to_pay = days * penalty;
  console.log('$' + amount_to_pay);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form name="finecalc" action="" method="post">
  <p>
    Borrowed date
    <input type="date" name="bdate" id="bdate" required="required" value="<?php echo $bdate; ?>" />
  </p>
  <p>
    Return date</b>
    <input type="date" name="rdate" id="rdate" required="required" value="<?php echo $rdate; ?>" /> <b>
    </p>
     <p>Enter fine amount per day</b>
    <input type="text" name="amount" size="10"><b>
       </p><button type="button" onclick="calcDiff()">Calculate Fine</button><p id="display"></p>
</form>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda