»
Tiếng AnhTiếng PhápTiếng Việt

In - Số lần tim đập khi vận động - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Ứng dụng » Số lần tim đập khi vận động
URL: https://www.javascriptbank.com/training-heart-rate.html

Số lần tim đập khi vận động © JavaScriptBank.comDùng hiệu ứng JavaScript này để xem số lần tim bạn đập trong một phút, tham số đầu tiên là số lần tim bạn đập lúc cơ thể nghỉ ngơi hoàn toàn (buổi sáng khi vừa mới thức dậy) và tham số thứ hai là số tuổi của bạn.

Phiên bản đầy đủ: jsB@nk » Ứng dụng » Số lần tim đập khi vận động
URL: https://www.javascriptbank.com/training-heart-rate.html



JavaScript
<script>// Created by: Larry Wiley :: http://schools.nsd.org/%7Elwiley/function alertwiththr() {  var rhr = prompt("What is your resting heart rate?", "")  var age  = prompt("What is your age?", "")  var tot = 220 - +rhr+ - age  var lowfinal = tot *.7 +  +rhr  var hifinal = tot *.9 + +rhr  alert("Your target heart rate is between" +" "+lowfinal+" "+ "and"+" " +hifinal)}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form>  <input type="button"Style="font: 12pt Lithos Regular;background:blue;color:white" value="Calculate Your Training Heart Rate" onclick="alertwiththr()"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->