摘要: 轮播图 <!DOCTYPE html> <html lang="ch-zn"> <head> <meta charset="UTF-8"> <link rel="" href=""> <meta name="viewport" content="width=device-width, initial 阅读全文
posted @ 2021-02-28 10:18 小衣 阅读(146) 评论(0) 推荐(0)
摘要: 数学对象 数学对象的操作 console.log(Math); 1.取整的方法 //针对于负数来说: //向下取整 console.log( Math.floor(4.5) ); //4 //向上取整 console.log(Math.ceil(4.001)); //5 //四舍五入 console 阅读全文
posted @ 2021-02-28 02:34 小衣 阅读(82) 评论(0) 推荐(0)