0

我在 iOS 上使用 Phonegap 2.6,当链接打开时,它使用全屏,无法返回应用程序。有没有办法触发某种控件返回应用程序?我的代码如下:

 function shareonfb()
    {
        photoid = sessionStorage.PhotoId;
        filename = sessionStorage.PhotoFilename;

        postUrl  = "http://site.com/sharedimage.php?photoid="+photoid;

        imageUrl = "http://site.com/images/"+filename;

        var sSiteUrl="http://www.facebook.com/sharer.php?s=100&u="+postUrl; 

        var ref = window.open(sSiteUrl, '_self', 'location=yes', 'presntationstyle=pagesheet');


    }
4

1 回答 1

1

_self通过更改为解决了该问题_blank

所以:

var ref = window.open(sSiteUrl, '_blank', 'location=yes');
于 2013-04-19T15:03:59.853 回答