2013-12-23 58 views
1

比如我HTML這樣的:如何在存在div內添加HTML元素,但是覆蓋內容?

<div class='title-post'>The content</div> 

現在,我想使用jQuery添加元素有結果是這樣的:

<div class='title-post'><span>The content</span></div> 

這意味着我添加<span></span>蓋的內容。

我該如何使用jquery來做到這一點?

感謝您的幫助。 jQuery的的

+1

downvoter comment?我不好,所以我需要幫助。 –

回答

6

使用jQuery API wrapInnerhttp://api.jquery.com/wrapInner/

演示http://jsfiddle.net/rp3bY/

代碼

$('.title-post').wrapInner('<span>'); 
+0

非常感謝你。這是很好的答案。 –

+1

不用擔心@happi很高興幫助':)' –

+1

是的,比我的回答更好。我不知道這個功能存在;-) – Armin