我在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');
}
答案 0 :(得分:1)
通过将_self
更改为_blank
所以:
var ref = window.open(sSiteUrl, '_blank', 'location=yes');