为了方便h5页面在app上调试看到打印的日志 重写window.console
Posted 浩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为了方便h5页面在app上调试看到打印的日志 重写window.console相关的知识,希望对你有一定的参考价值。
(function(){ var print={ lock:true, log:function(param){ if(this.lock){ var element=document.createElement("div"); element.style.background=‘green‘ element.style.fontSize=‘20px‘ switch (typeof param){ case "string" :element.innerhtml=param;break; case "object":element.innerHTML=JSON.stringify(param);break; } document.body.appendChild(element) } } } window.console=print; })(window) console.log("我哦我我我我我我我哦我") console.log({name:"张三",age:15})
以上是关于为了方便h5页面在app上调试看到打印的日志 重写window.console的主要内容,如果未能解决你的问题,请参考以下文章