我正在爲此付出努力。在特定文字周圍包裹一個新的div元素
如何在沒有任何類或ID的文本週圍包裝新元素?
下面是場景:
我需要新的div環繞 「Share your knowledge. <a href="URL">Be the first to write a review »</a>
」
我嘗試這樣:
$(document).ready(function(){
$('.ContentDiv').each(function(){
$(this).add($(this).next()).wrapAll('<div class="NewDiv"></div>');
})
})
但它不是因爲它只是圍繞着<a>
元素而工作d將文本留在它下面。我還需要其中的文字。
請幫忙!
預先感謝您。
〜埃琳娜
您能告訴我們完整的HTML代碼嗎?什麼是'「分享你的......」的母公司' – 2013-02-15 18:01:38
但是在你的標記中'div.ContentDiv'不是'分享你的知識的父母。 Be the first to write a review »'。 – undefined 2013-02-15 18:02:04