我只是附加了一個A標籤,我試圖刪除它,謝謝你的任何幫助。jQuery如何刪除附加的A標籤與給定的ID
HTML:
<div>
<p id="header"></p>
</div>
的jQuery:
$(document).ready(function (e) {
// Append A tag with id= Test1
$('#header').append("<a href='#' id='Test1'> Test1</a>");
// Remove the tag - it doesn't work.
$('#header').remove("a#Test1");
}
使用'$( '#標題#一個Test1的')刪除();' – guradio
我不想。也要刪除標題,只是標識爲Test1的A標籤。 – Ado
*** [至少在API文檔](http://api.jquery.com/remove)中可以看到***這個問題。 –