2016-07-10 43 views
0

我使用$http.get();來獲取我的文章的HTML內容。但是,一些帖子有鏈接,當我點擊應用程序中的這些鏈接時,它們不會打開。 因此,我需要幫助來找到一種方法來搜索鏈接(<a>)到HTML中,並使其在系統瀏覽器中使用InAppBrowser打開。 有人可以幫忙嗎?正在搜索將鏈接導入到HTML中以使用InAppBrowser

+0

您是否嘗試過我的評論? – trungk18

+0

我會盡力在這裏評論。 –

回答

0

盧卡斯,

上次我也用InAppBrowser用下面的代碼。

<div onclick="window.open('https://www.google.com.sg/', '_system', 'location=yes'); return false;"></div> 

所以,如果你想將它插入到你的應用程序,讓它這樣做。我假設你將$ http.get()的數據結果存儲到$ scope.respondData變量中。並且每個對象都有一個字段來存儲鏈接linkToWebSite

<ul> 
    <li ng-repeat="item in respondData" ng-if="item.linkToWebSite"> //display if linkToWebSite not empty. 
     <a onclick="window.open('{item.linkToWebSite}', '_system', 'location=yes'); return false;"></a> 
    </li> 
</ul>