phonegap - open link in browser

后端 未结 9 855
一向
一向 2020-12-08 22:52

I use phonegap (cordova 2.2)

I have link like this :

twitter
9条回答
  •  [愿得一人]
    2020-12-08 23:05

    If you want to use as in the ios version, with target="_blank" attributes:

    $(document).on('tap', 'a[target="_blank"]', function(e){
        navigator.app.loadUrl(e.target.href, { openExternal: true });
        return false;
    });
    

提交回复
热议问题