摘要: 属性设置为display:inline或display:inline-block 阅读全文
posted @ 2018-11-26 20:19 lvlin241 阅读(11536) 评论(0) 推荐(0) 编辑
摘要: var a = 2.34567; var b = a.toFixed(3); // 输出结果:2.346 // 数字字符串转换为数字 var c = "123"; typeof c; // string var d = parseInt(c); typeof d; // number var e = parseInt(c); typeof e; // number 阅读全文
posted @ 2018-11-26 20:17 lvlin241 阅读(296) 评论(0) 推荐(0) 编辑