Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我把我的 html + css + javascript 代码给了我的朋友,让他为 iOS 中的 phonegap 编译它。相同的代码适用于 android。但是他说每次编译代码时都会显示弹出窗口
这是他的意思的弹出窗口:
和
我如何删除这些弹出窗口?
我遇到了完全相同的问题,阅读了 codemonkey 的评论,发现在我的 html 文件中,我指的是一个旧的 cordova javascript 文件。
我换了
<script src="js/cordova-2.2.0.js"></script>
<script src="cordova-2.5.0.js"></script>
弹出窗口消失了:)