0

请参阅下面的简单测试程序。在警报中,我需要用两位小数显示变量 MaxPrice。我在测试程序中放置了 $MaxPrice,但实际上,$MaxPrice 是从 SQL 文件中读取的,是一个带有数值的数字字段(在本例中为 2.00)。警报仅显示“2”。如何让它显示“2.00”?

<html>
<head>
<script language="javascript">
function myFunction()
{
PriceEntered=document.forms["form1"]["Price"].value;
MaxPrice=document.forms["form1"]["MaxPrice"].value;
alert("Price Entered=" + PriceEntered + " and maximum= " +  MaxPrice );
}
</script>
</head>

<?php
$MaxPrice=2.00;
?>

<body>
<form id="form1" name="form1" method="post" onsubmit="myFunction ()" action="test.php">
<input name="MaxPrice" id="MaxPrice" type="hidden" value="<?php echo $MaxPrice;?>">
<input name="Price" id="Price" type="text" value="3.00">
<input type="submit" name="submit1" value"Submit" />
</form>
</body>

4

3 回答 3

1

使用alert("Price Entered=" + Number(PriceEntered).toFixed(2) + " and maximum= " + Number(MaxPrice).toFixed(2));.

于 2013-06-22T20:30:09.263 回答
1

我的猜测是echo不是真的回声 2.00,而是只是 2,所以你可能想调查一下。可能相关: http: //php.net/manual/en/function.number-format.php

但是,从 JavaScript 的角度来看,尝试该toFixed方法,例如

MaxPrice = parseFloat(MaxPrice).toFixed(2);
于 2013-06-22T20:30:14.937 回答
0

尝试这个

var num = 2;
alert(num.toFixed(2)); 
于 2013-06-22T20:33:02.870 回答