篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在JavaScript.html中的il metodo toFixed()相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title>il metodo toFixed() in JavaScript</title>
<script type="text/javascript">
var piGreco = 3.1415926535897932384626433832795028841971;
var piGrecoLimitato = piGreco.toFixed(6);
document.write("<p>Il PiGreco, limitato alle prime 6 cifre decimali ha il valore arrotondato '" + piGrecoLimitato + "'</p>");
document.write("<p>La variabile piGrecoLimitato è di tipo " + typeof piGrecoLimitato + " e non più " + typeof piGreco + "</p>");
var euro = 1936.27;
var euroDecimali = euro.toFixed(5);
document.write("<p>Il valore di un euro, limitato alle prime 5 cifre decimali ha il valore '" + euroDecimali + "'</p>");
document.write("<p>La variabile euroDecimali è di tipo " + typeof euroDecimali + " e non più " + typeof euro + "</p>");
var mezzoEuro = 968.135;
var mezzoEuroLire = mezzoEuro.toFixed();
document.write("<p>Il valore di mezzo euro, espresso in lire e arrotondato è '" + mezzoEuroLire + "'</p>");
document.write("<p>La variabile mezzoEuroLire è di tipo " + typeof mezzoEuroLire + " e non più " + typeof mezzoEuro + "</p>");
</script>
</head>
<body>
</body>
</html>
以上是关于html 在JavaScript.html中的il metodo toFixed()的主要内容,如果未能解决你的问题,请参考以下文章