在由.each
指定的函數內我想要刪除a
標記/。 這是一個非工作例如:從每個.each調用的函數中刪除標記
$('div.link').has('div.entry:has(p.title:has(a[href^="http://i.imgur.com/"]))').each(function (i) {
$(this).css('border', '5px solid');
$(this).remove('a'); // Does NOT work! Nothing happens...
console.log($(this));
})
低於全尺寸點擊圖片。標記的線是純粹的巧合,並不表示什麼。要測試的東西出來,請訪問http://reddit.com和使用螢火蟲(jQuery是加載):
你試過了$(this).find('a')。remove()'? –
你可以試試這個嗎? $(本).find( 'A')刪除(); – ryadavilli
@傑克:不,我沒有,我是綠色的jQuery,並沒有真正理解它的概念呢。 – Deleted