2024年06月13日 建站教程
console控制台输入有哪些好玩的用法,下面web建站小编给大家详细介绍一下各种玩法!
console占位符的介绍:
%s 字符串 %d 或 %i 整数 %f 浮点数 %o 对象的链接 %c CSS格式字符串
用法介绍:
const css1 = 'font-size: 22px;font-weight: bold'; const css2 = 'border: 1px solid green'; const css3 = 'color: #fff;background: #f00'; // 占位符填入 console.log('%c %s + %s = %s', css1, 1, 2, 3); // 字符串拼接形式中插入%c占位符 console.log('%c我的名字叫' + name + ', 今年' + age + '岁', css2); // es6字符串模板中插入%c占位符 console.log(`%c我叫${name},${age}岁, 有%f元`, css3);
本文链接:http://so.lmcjl.com/news/6464/