使用Phonegap 3.3在Safari浏览器中打开的链接

时间:2014-05-29 17:30:26

标签: javascript html css cordova phonegap-build

我在Phonegap Build 3.3中使用纯HTML,CSS和JS构建了一个应用程序。我想要包含一些指向网站的链接,我希望在Safari中打开,而不是在应用内浏览器中打开。任何人都能解释一下吗?我使用_system作为目标等尝试了所有明显的JS。

Config.xml如下:

<?xml version="1.0" encoding="UTF-8" ?>
<widget 
    xmlns = "http://www.w3.org/ns/widgets"
    xmlns:gap   = "http://phonegap.com/ns/1.0"
    version     = "1.1.0">

    <preference name="orientation" value="portrait"/>
    <preference name="target-device" value="universal"/>
    <preference name="fullscreen" value="false"/>
    <preference name="disable-cursor" value="true"/>
    <preference name="android-installLocation" value="auto"/>
    <preference name="DisallowOverscroll" value="true"/>
    <preference name="webviewbounce" value="false"/>

    <gap:config-file platform="ios" parent="UISupportedInterfaceOrientations" overwrite="true">
    <array>
        <string>UIInterfaceOrientationLandscapeOmg</string>
    </array>
    </gap:config-file>

    <access origin="*" browserOnly="true" />

    <preference name="permissions" value="none"/>

    <gap:splash src="splash.png" />

    <icon src="Icon.png" gap:platform="ios" width="57" height="57" />
    <icon src="Icon-72.png" gap:platform="ios" width="72" height="72" />
    <icon src="Icon@2x.png" gap:platform="ios" width="114" height="114" />
    <icon src="Icon-72@2x.png" gap:platform="ios" width="144" height="144" />

    <gap:splash src="splash/ios/Default.png" width="320" height="480" />
    <gap:splash src="splash/ios/Default_at_2x.png" width="640" height="960" />
    <gap:splash src="splash/ios/Default_iphone5.png" width="640" height="1136" />
    <gap:splash src="splash/ios/Default-Landscape.png" width="1024" height="768" />
    <gap:splash src="splash/ios/Default-Portrait.png" width="768" height="1024" />

</widget>

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您仍然需要使用InAppBrowser插件,但在config.xml中以这种方式配置:

<gap:plugin name="org.apache.cordova.inappbrowser" />
<feature name="InAppBrowser">
    <param name="ios-package" value="CDVInAppBrowser" />
</feature>
<preference name="stay-in-webview" value="false" />

然后在你的js代码中:

window.open(url, "_system");

请参阅此处查看InAppBrowser documentation