Any way of detecting whether a browsers console is able to render colors?

前端 未结 2 1836
予麋鹿
予麋鹿 2021-02-12 09:58

Is there a way of checking to see if a browser is capable of using console colors without sniffing?

console.log(\'%c Oh my heavens! \', \'background: #222; color         


        
2条回答
  •  滥情空心
    2021-02-12 10:45

    This is one of these few cases where browser version detection seems the valid way to go. To minimize the dangers of this approach make sure to use a blacklist rather than a whitelist, no matter how unintuitive this might feel right now (to make sure you don't leave out new future browser as happened with a lot of old netscape focused code). I am aware that this isn't the answer you wanted to hear, but as console.log is a native function and it's effect can in no way be observed, so as far as I can see the only option is to do browser version detection.

提交回复
热议问题