我在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运行的调试中。
如何解决此问题