skyful

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  16 Posts :: 0 Stories :: 45 Comments :: 0 Trackbacks

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="javascript">
 function roundFun(numberRound,roundDigit) //四舍五入,保留位数为roundDigit ,供计算时用

  {
   if (numberRound>=0)
   {
   var tempNumber = parseInt((numberRound * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);
   return tempNumber;
  }
  else
   {
   numberRound1=-numberRound
   var tempNumber = parseInt((numberRound1 * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);
   return -tempNumber;
  }

     }

</script>
<title>Test</title>
</head>

<form name="form1">
<input name="num1" type="text" id="num1" maxlength="10">
<input type="button" name="Submit" value="Click Me" onclick="javascript:this.form.num1.value=roundFun(this.form.num1.value,2)">
</form>

</body>
</html>

 

posted on 2006-05-19 16:44 氓氓 阅读(2040) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: