console.log日志未显示在Xcode调试记录器中,或者未显示在Safari调试记录器中

时间:2019-12-16 09:35:30

标签: ios xcode cordova debugging ios-simulator

我在cordova / www下创建了index.html文件。通过iOS模拟器运行它,然后执行以下操作:

<!DOCTYPE html> <html> <head>   <title>Title</title> </head> <body>

    <h1>Hello World1</h1>
    <h2>Test this out</h2>
    <h2 id="test"></h2>

    <script>
      console.log("Test")
      document.getElementById("test").innerHTML = "text string"
    </script>

</html>

HTML输出显示在模拟器中,并且<h2 id="test"></h2>中也填充了“文本字符串”字符串-表示已启用JS。

但是,console.log("Test")不会出现在任何地方-不在Xcode调试上,也不在我从Safari运行的调试中。

如何解决此问题

0 个答案:

没有答案