123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Calc Live</title>
- </head>
- <body>
- <input type='number' id="cost" placeholder="Cost of pack of cigarettes"/>
- <input type='number' id="amount" placeholder="Amount of cigarettes in pack"/>
- <input type='number' id="amountDay" placeholder="Smooking cigarettes in day"/>
-
- <div id="price">
- otvet
- </div>
- <div id="month">
- текст в div
- </div>
-
- <script>
-
- const calcPrice = () =>
- price.innerHTML = cost.value / amount.value ;
- cost.oninput = amount.oninput = calcPrice;
- const calcMonth = () =>
- month.innerHTML = cost.value / amount.value * amountDay.value;
- amountDay.oninput = calcMonth;
-
- </script>
- </body>
- </html>
|