javascript中如何开3次方??

如题所述

第1个回答  2010-04-28
Math.pow(x,y)
x是底数,y是幂数
-0-。不好意思,这是乘方,不是开方~~SORRY~
第2个回答  2010-04-30
<html>
<head>
<script>
var a=Math.pow(8,1/3);
document.write(a);
</script>
</head>
</html>本回答被网友采纳
相似回答