小数点以下2桁の文字列を取得する。
$( '#progress' ).text( ( pos*100/total ).toFixed(2) );
var num = 12.3456789;
alert( num.toFixed() ); // 12
alert( num.toFixed(1) ); // 12.3
alert( num.toFixed(2) ); // 12.35
alert( num.toFixed(3) ); // 12.346
alert( num.toFixed(4) ); // 12.3457
数値オブジェクトのtoFixedメソッドは、パラメータで小数点以下の桁数(0~20:省略時は0)をすることでその桁数までを含んだ文字列を返す。参考)Math.floorメソッドは小数点第1位を四捨五入した整数値を返す。