简体   繁体   中英

How can I display a warning to users who open the Chrome console, like Facebook and Blockchain does?

When I open the console on some sites like Facebook and Blockchain, I get a warning like the one below, I was wondering how I can do that on my site? Display a warning telling the user it's dangerous and he should not paste anything there.

在此输入图像描述

您可以设置console.log消息的样式:

console.log('%cStop!', 'color: red; font-size: 30px; font-weight: bold;');

您可以在window load事件中使用console.warn()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM