文章最后更新时间:
介绍
在JavaScript中 console.log可以在浏览器的开发者工具中输出信息。大多用于调试数据,也可以使用在版权声明上。例如使用格式为
console.log('这里填写内容')
将上面代码放入script标签中即可在浏览器按下f12(右击检查)打开开发者工具。edge这种显示的为控制台。Google显示的为console
效果图
参考代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript</title>
</head>
<body>
<script>
console.log('%c© ' + new Date().getFullYear() + ' Your Company Name. All rights reserved.',
'background: linear-gradient(90deg, #ff0000, #ff7700, #ffdd00, #00ff00, #0000ff, #ff00ff); color: transparent; -webkit-background-clip: text; font-size: 16px; font-weight: bold;');
console.log('%c version %c 1.0.0 ',
'background:#35495e ; padding: 1px; border-radius: 3px 0 0 3px; color: #fff',
'background:#41b883 ; padding: 1px; border-radius: 0 3px 3px 0; color: #fff')
</script>
</body>
</html>
自定义修改教程
占位符%s:字符串
占位符%d or %i:整数
占位符%f:浮点数
占位符%o:可展开的DOM
占位符%O:列出DOM的属性
占位符%c:根据提供的css样式格式化字符串
例如我想修改为图片输出 那么就需要用到%c进行填写css代码
console.log("%c","background:url(图片路径) no-repeat;padding:50px 300px;line-height:120px");
注意事项
console不能定义img,因此用背景图片代替
console不支持width和height,利用空格和font-size代替;还可以使用padding和line-height代替宽高
请登录后发表评论
注册
社交账号登录