对一个数字进行取整数操作

  1. <html>
  2. <body>
  3.  
  4. <script type="text/vbscript">
  5. i = 48.66776677
  6. j = 48.3333333
  7. document.write(Round(i))
  8. document.write("<br />")
  9. document.write(Round(j))
  10. </script>
  11.  
  12. </body>
  13. </html>