比如我HTML這樣的:如何在存在div內添加HTML元素,但是覆蓋內容?
<div class='title-post'>The content</div>
現在,我想使用jQuery添加元素有結果是這樣的:
<div class='title-post'><span>The content</span></div>
這意味着我添加<span></span>
蓋的內容。
我該如何使用jquery來做到這一點?
感謝您的幫助。 jQuery的的
比如我HTML這樣的:如何在存在div內添加HTML元素,但是覆蓋內容?
<div class='title-post'>The content</div>
現在,我想使用jQuery添加元素有結果是這樣的:
<div class='title-post'><span>The content</span></div>
這意味着我添加<span></span>
蓋的內容。
我該如何使用jquery來做到這一點?
感謝您的幫助。 jQuery的的
一號線:
$('.title-post').html($('<span />').text($('.title-post').text()));
非常感謝你 –
downvoter comment?我不好,所以我需要幫助。 –