js把科学计数法表示的字符串转化为数值的方法,比较简单的办法如下 <script> function doIt(){ var num = new Number("3.4556645445E7"); alert(num); } </script>