即時嘗試嵌入外部網頁(Facebook的頁面/微博)裏面的jqm iframe,但iframe沒有加載。jquerymobile + phonegap外部div div/iframe內頁
<div data-role="content" >
<iframe>http://m.facebook.com/pages</iframe>
</div>
我已經把* .facebook.com放入了phonegap白名單。
<access origin="http://*.facebook.com" browserOnly="true"/>
一直在尋找解決方案一個星期沒有任何結果。 我想知道是否有人可以給我另一種方法,因爲這是行不通的。
更新:它似乎我可以注入iframe中的隨機php頁面,但不能顯示Facebook或Twitter。我需要使用fb/twitter api嗎?
ps。即時通訊不做fbconnect的東西,只顯示一個頁面的移動版本。
,我也嘗試另一件事:
<access origin="*" />
那麼你可以:
$(document).on('pageshow', '#twit' ,function(){
var ref = window.open(encodeURI('http://apache.org'), '_blank', 'location=yes');
// relative document
ref = window.open('next.html', '_self');
$("#twitcont").append(ref);
}
做,但我不知道從哪裏開始與例子,還有很多。 – RuvaloLU
你可以按照phonegap網站中的例子我在我的回答中提到 –
我更新了我的答案,請檢查它 –