4

我正在开发一个移动网站,它在 Android 股票浏览器中运行良好。在 Firefox 中,一些 JavaScript 函数不起作用。所以我在谷歌上搜索错误控制台。我发现了一个支持页面,它提供了有关早期版本的错误控制台的信息。

Firefox for mobile 版本 14 (2012-06-26)中是否有错误控制台?

4

1 回答 1

1

看起来它是隐藏的,但是添加browser.console.showInPanel然后 devtools.errorconsole.enabled将两者都设置为“true”about:config将启用控制台和首选项面板以进行 JavaScript 调试。

以下是如何找到错误控制台图标:

似乎错误控制台已被弃用,因此书签是其余移动调试替代方案中最简单的:

  • 安卓控制台:
javascript:(function(){if((/android/gi).test(navigator.appVersion)){console={"_log":[],"log":function(){var%20arr=[];for (var%20i=0;i%20\""+value+"\"");}},"show":function(){alert(this._log.join("\n"));this._log =[];}};window.onerror=function(msg,url,line){console.log("ERROR:%20\""+msg+"\"%20at%20\""+"\",% 20line%20"+line);}window.addEventListener("touchstart",function(e){if(e.touches.length===3){console.show();}});}})() ;
  • 萤火虫精简版:
javascript:(函数(F,i,r,e,b,u,g,L,I,T,E){if(F.getElementById(b))return;E=F[i+'NS']&&F. documentElement.namespaceURI;E=E?F[i+'NS'](E,'script'):F[i]('script');E[r]('id',b);E[r]( 'src',I+g+T);E[r](b,u);(F[e]('head')[0]||F[e]('body')[0])。 appendChild(E);E=new%20Image;E[r]('src',I+L);})(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4', 'firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened');
于 2012-08-22T22:01:20.117 回答