這種情況下:我有多個<span>
標籤與類.productLink
,與鏈接(<a>
)包含一個頁面的鏈接。如何通過jQuery在<span>中獲取<a>中的href標記?
例
<span class="productLink">
<a href="/Products/Category/item.html">A very nice product</a>
</span>
<span class="productLink">
<a href="/Products/Category/otheritem.html">Also very nice product</a>
</span>
現在我想找回與jQuery這些鏈接。
我嘗試:
$('.productLink').each(function(index){
console.log($(this + ' a').attr('href'));
});
但它投擲:
未捕獲的語法錯誤,不能識別的表達式:[對象HTMLSpanElement]
我必須改變什麼?
我錯過了一些東西嗎? – Satpal
有時會出現不適當的投票結果,而這種情況發生在我身上。 – guradio