摘要: 1.数学计算 alert(Math.pow(2, 10));//2的10次幂 alert(Math.pow(16, 1 / 4)); //16的开4次方 alert(Math.round(2.6)); alert(Math.ceil(2.6)); alert(Math.floor(2.6)); al 阅读全文