Catalog Online

コード

Monacaでブラウザを開く[edit]

2015/04/11 コード

InAppBrawserプラグインを有効にし、

var ref = window.open(url, '_system', 'location=yes');
ref.addEventListener("exit", function() {});

以下でも同じ。

monaca.invokeBrowser(url);

-------------------------------------------------------------
あるいは

if(monaca.isAndroid === true){
window.plugins.webintent.startActivity(
{
action: window.plugins.webintent.ACTION_VIEW,
url: url
},
function() {},
function() {alert('Failed to open URL via Android Intent');}
);
}else{
//monaca.invokeBrowser(url);
var ref = window.open(url, '_system', 'location=yes');
ref.addEventListener("exit", function() {});
}
-------------------------------------------------------------

Catalog Online

↑ PAGE TOP