0

Phonegap Android で www.google.com などのリンクを開きたい... いろいろ試しましたが、リンクを開くことができません。

<access origin="http://google.com" />config.xml に既に追加されています。

navigator.app.loadUrl('http://google.com');エラーを出しています。

$('#pageID').load('http://google.com',function(){
$('#pageID').trigger('create');
});

ページを読み込んでいますが、画像が表示されません。これは私の場合に必要です。

Phonegap でリンクを実際に開く方法を説明できる人はいますか。

4

2 に答える 2

1

Well it seems its not possible ..... but I found that we can do it other way round.

We know this works :-

 <a data-role="none" id="someID" href="#" target="_blank">

So we can write jQuery as :-

$('#idAnchorTag').attr('href','some URL');

So the complete code is :- (Assuming that click was made on an image)

   <a data-role="none" id="idAnchorTag" href="#" target="_blank">
    <img id="idIMG" src="some IMAGE">
   </a> 

And the JS :-

$(function() {
   $("#idIMG").click(function(){

      $('#idAnchorTag').attr('href','some URL');

    });
});
于 2012-12-06T08:53:44.080 に答える
0

試す

$('#pageID').onClick(function(){
    document.location.href="http://google.com";
})
于 2012-11-13T11:28:09.333 に答える