2016-08-10 85 views
0

我一直在嘗試讓一個JavaScript頁面在iPhone上工作時遇到了很多問題。自從iPhone沒有控制檯選項我寫道:需要幫助弄清楚爲什麼IPhone不會運行簡單的代碼

https://github.com/mctrivia/debugMaster

使我自己的測試目的。但即使是最簡單的頁面似乎也不起作用。下面的代碼在#test的地址欄中執行,除了我的iphone以外的所有設備顯示Test Test Test Test。 iPhone的顯示Should not be visible.

<!DOCTYPE html> 
<html> 
    <header> 
     <link rel="stylesheet" type="text/css" href="/css/style.css" /> 
     <meta name="viewport" content="width=200, initial-scale=1.0, user-scalable=no"> 

     <script src="/js/jquery.js"></script>  
     <script src="/js/debugMaster.js"></script> 


     <script> 
     $(function() { 
      debugMaster.log("test"); 
      debugMaster.log("test"); 
      debugMaster.log("test"); 
      debugMaster.log("test"); 
      }); 
     </script> 
    </header> 
    <body> 
     Should not be visible. 
    </body> 
</html> 

Sample JSFiddle

網絡直播頁面:http://mctrivia.com/test/test.html#test

更新 我一直在做一些測試。

失敗: https://jsfiddle.net/mctrivia/a6yjux81/

遍: https://jsfiddle.net/mctrivia/yysphgnb/

,所以我知道到目前爲止這 console.log('test').show.append

+0

不確定,但檢查'控制檯'是否可用。 Safari按設計覆蓋了隱身模式的控制檯。類似的事情可能是問題。 – Rajesh

+0

如果outputtype == 2 ?? –

+0

我已回滾編輯。問題應該只有與OP有關的代碼。插件的代碼不是必需的。 – Rajesh

回答

0

,我發現它的culprets。 iPhone不允許使用這個詞let

相關問題