FireFox中只有Math.round,Math.Round估计又是MS造出来的。。
自己写一个也很简单:
    function Round(num, x){
        var t=Math.pow(10, x);
        return parseInt(num*t)/t;
    };