使用 InAppBrowser 的代码示例
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
var url= "https://blog.knoldus.com/";
var browserRef = window.cordova.InAppBrowser.open(url, "_self", "location=no", "toolbar=no");
browserRef.addEventListener("exit", (event) => {
return navigator["app"].exitApp();
}
);