Versión blindada:
Código PHP:
<html>
<head>
<script language="JavaScript">
function redondea(sVal, nDec){
var n = parseFloat(sVal);
var s = "0.00";
if (!isNaN(n)){
n = Math.round(n * Math.pow(10, nDec)) / Math.pow(10, nDec);
s = String(n);
s += (s.indexOf(".") == -1? ".": "") + String(Math.pow(10, nDec)).substr(1);
s = s.substr(0, s.indexOf(".") + nDec + 1);
}
return s;
}
function ponDecimales(nDec){
document.frm.t1.value = redondea(document.frm.t1.value, nDec);
document.frm.t2.value = redondea(document.frm.t2.value, nDec);
}
</script>
</head>
<body>
<form name="frm">
<input type="text" name="t1"><br>
<input type="text" name="t2"><br>
<input type="button" value="Prepárense" onclick="ponDecimales(2)">
</form>
</body>
</html>
Saludos.