控制台.log检测

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控制台.log检测相关的知识,希望对你有一定的参考价值。

Basically creates a log function on the window object and uses console.log or alert depending on which is supported. Very basic and simple but definitely useful.
  1. window.log = function(){
  2. var output = Array.prototype.slice.call(arguments);
  3. window.console ? console.log(output) : alert(output);
  4. }

以上是关于控制台.log检测的主要内容,如果未能解决你的问题,请参考以下文章

使用 Pygments 检测代码片段的编程语言

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

webstorm代码片段的创建

Android:使用Tab检测单个片段viewpager

十条实用的jQuery代码片段

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情