汪和康

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年2月4日

摘要: Math.pow(2,53) // => 9007199254740992: 2 的 53次幂 Math.round(.6) // => 1.0: 四舍五入 Math.ceil(.6) // => 1.0: 向上求整 Math.floor(.6) // => 0.0: 向下求整 Math.abs(-5) // => 5: 求绝对值 Math.max(x,y,z) // 返回最大值 Math.min(x,y,z) // 返回最小值 Math.random() // 生成一个大... 阅读全文
posted @ 2013-02-04 11:31 Supe 阅读(8876) 评论(0) 推荐(0) 编辑

摘要: <html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>无标题页</title> <script type="text/javascript"> function thisTest(obj) { alert(obj.getAttribute('dept')); } function showguid(){ var a=document.getElementById(&quo 阅读全文
posted @ 2013-02-04 09:44 Supe 阅读(215) 评论(0) 推荐(0) 编辑