2015-11-16 70 views
-2

我有一個HTML頁面,它有很多字符。我只想將特定類的元素保存到CSV文件中或以某種方式僅導出特定類的元素。例如:按類和商店屬性檢索CSV中的元素

<a href="/n/lucaslucco" class="profimg"> 
    <img src="https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-19/11358188_704898589633208_839585839_a.jpg" alt="" width="40" height="40" /> 
</a> 

我有很多這些在我的HTML,但我只想保存鏈接。我試圖通過課堂獲得元素,但它沒有顯示任何東西。

+0

發佈您的代碼。 –

+1

看起來像XY問題,而不是試圖解決實際問題,你混淆了我們,你不能做別的事情,但其他解決方案並不能幫助你得到正確的答案。 –

+0

什麼是你保存到CSV文件?顯示你試圖做什麼,不工作。 – epascarello

回答

0

你可以選擇你想要的圖像,並使用地圖來獲取圖像源。

var imgs = $("a.profimg img") 
 
      .map(function (ind, elm) { 
 
       return elm.src; 
 
       }) 
 
      .get(); 
 
console.log(imgs);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<a href="/n/lucaslucco" class="profimg"><img src="https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-19/11358188_704898589633208_839585839_a.jpg" alt="" width="40" height="40"></a> 
 
<a href="/n/lucaslucco" class="profimg"><img src="https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-19/11358188_704898589633208_839585839_a.jpg" alt="" width="40" height="40"></a> 
 
<a href="/n/lucaslucco" class="xxx"><img src="https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-19/11358188_704898589633208_839585839_a.jpg" alt="" width="40" height="40"></a>