iOS6 - removed console log for IPad - how to use web inspector on windows?

前端 未结 8 2036
被撕碎了的回忆
被撕碎了的回忆 2020-12-05 13:11

So iOS6 is out, horrah. Now, it appears as though Apple have removed the \'Developer Console\' that used to exist in Safari. Great, I hear a lot of people say - it was limit

8条回答
  •  半阙折子戏
    2020-12-05 13:44

    A poor mans debugging console:

        try {
            var test = document.do.something();
        }
        catch (exc) {
            alert(exc);
        }
    

提交回复
热议问题