标签: javascript debugging browser
我想和几个朋友开个玩笑。因为我不希望每个页面多次点击服务器,所以我希望代码短路,这样只有当这个人有firebug或chrome控制台时才能执行。
有没有办法检测他们是否正在使用控制台?
如果你因为the joke cant be seen unless in the console
答案 0 :(得分:0)
我认为你需要的是:
if (typeof window.console != 'undefined') { // Console is available. Do something. }