1.如何判斷一個(gè)變量是不是浮點(diǎn)數(shù):
函數(shù)如下:
isFloat(n){
? ? ? return /^-?\d*\.\d+$/.test(n);
? ? },
this.isFloat(workDays)? ? ?//workDays是變量名
2.小數(shù)值四舍五入三種方法
下面來介紹將小數(shù)值舍入為整數(shù)的幾個(gè)方法:Math.ceil()、Math.floor()和Math.round()掸犬。 這三個(gè)方法分別遵循下列舍入規(guī)則:
◎Math.ceil()執(zhí)行向上舍入,即它總是將數(shù)值向上舍入為最接近的整數(shù);
◎Math.floor()執(zhí)行向下舍入,即它總是將數(shù)值向下舍入為最接近的整數(shù)们颜;
◎Math.round()執(zhí)行標(biāo)準(zhǔn)舍入寒矿,即它總是將數(shù)值四舍五入為最接近的整數(shù)(這也是我們在數(shù)學(xué)課上學(xué)到的舍入規(guī)則)。
栗子:
alert(Math.ceil(25.9)); //26
alert(Math.ceil(25.5)); //26
alert(Math.ceil(25.1)); //26
alert(Math.round(25.9)); //26
alert(Math.round(25.5)); //26
alert(Math.round(25.1)); //25
alert(Math.floor(25.9)); //25
alert(Math.floor(25.5)); //25
alert(Math.floor(25.1)); //25