在Cordova Apps中加载外部网站

时间:2016-06-13 15:45:41

标签: javascript html5 cordova

我通过inappbrowser在cordova app中加载外部网站。但是,外部网站仅在从默认" index.html"在项目结构中。有没有办法避免这种转变,并在设备准备功能后直接加载外部网站?

onDeviceReady:function() 

{        app.receivedEvent('deviceready');

        navigator.splashscreen.hide();

        if (navigator.connection.type == Connection.NONE) {
            navigator.notification.alert('An internet connection is required to continue');
        } else {

            var ref = window.open('https://example.com/', '_blank', 'location=no,toolbar=no,zoom=no');
        }
    },

目前按下设备后退按钮会将我带到空的index.html文件,这个文件并不吸引人。在config.xml中将src更改为外部网站并不会有帮助,因为网站随后在设备浏览器中外部加载,而不是在移动应用程序中。

0 个答案:

没有答案