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.
使用 phonegap 2.5.0 但退出应用程序总是给对象没有方法 exitApp
用过的navigator.device.exitApp()
navigator.device.exitApp()
这是贬值吗?还是我只是用错了
谢谢
你需要使用navigator.app.exitApp();
navigator.app.exitApp();
你可以使用这个条件
if (navigator.app) { navigator.app.exitApp(); } else if (navigator.device) { navigator.device.exitApp(); }
这很好用。无版本问题。
你可以使用 BackButton.exitApp();