课程
/前端开发
/JavaScript
/JavaScript进阶篇
Math.floor(x)
2015-06-23
源自:JavaScript进阶篇 7-14
正在回答
正确啊
向下取整floor()
http://www.imooc.com/code/852
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
2 回答为什么Math.floor(x)中的x可以是任意数值或表达式,而Math.ceil(x)中的x必须是一个数值?
4 回答document.write(Math.floor(a)+"<br/>")
1 回答function get_nextSibling(n){ var x=n.nextSibling; while (x && x.nodeType!=1){ x=x.nextSibling; } return x; }
2 回答function get_nextSibling(n){ var x=n.nextSibling; while (x && x.nodeType!=1){ x=x.nextSibling; } return x; }
4 回答while (x && x.nodeType!=1){ x=x.nextSibling; }