喂神

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

2014年6月30日 #

摘要: Math.round(x)四舍五入,如Math.round(0.60),结果为1;Math.round(0.49),结果为0;Math.floor(x)向下舍入,如Math.floor(0.60)与Math.floor(0.49),结果均为0;Math.ceil(x)向上舍入,如Math.ceil(... 阅读全文
posted @ 2014-06-30 14:34 莫见笑 阅读(1664) 评论(0) 推荐(0) 编辑

摘要: js本身没有提供类似的定义方式,但是可以通过多行注释(/* */),已经借助function的方式来达到多行字符的定义,例如代码:var jstr = function() { var fun = function() { /*line1 line2 line... 阅读全文
posted @ 2014-06-30 14:00 莫见笑 阅读(1112) 评论(0) 推荐(0) 编辑