Get console history

前端 未结 4 755
無奈伤痛
無奈伤痛 2020-12-30 01:42

I\'d like to know if there is a way in javascript to retrieve console history.

What I mean by console history is what appears in the dev tools console. For instance,

4条回答
  •  情歌与酒
    2020-12-30 02:34

    There is no way to get the console data with JavaScript. Only way you would be able to do it is basically hijack all the console functions and store a copy and than call the default log lines.

提交回复
热议问题