How can I load a webpage inside the phonegap webview?

后端 未结 3 902
萌比男神i
萌比男神i 2020-12-13 15:46

I want to be able to link to a webpage inside the phonegap webview that loads an external webpage inside the same phonegap webview. If I do this, it loads inside the webview

3条回答
  •  萌比男神i
    2020-12-13 16:09

    This seems to have changed, and access origin seems to have no effect. If you're using the cordova whitelist plugin, as seems to be standard. You need to use allow-navigation in your config.xml file. Without this it will open your web browser.

    
    
    

    Then you can use window.location = 'https://google.com' to move to another webpage within your JS.

提交回复
热议问题