2011-05-30 78 views
2

有什麼辦法來取代使用jQuery從內容 - 比方說,從DIV替換了jQuery ID

<html> 
    <body> 
     <div class="information1"> 
      This is the information. 
     </div> 
    </body> 
</html> 

<html> 
    <body> 
     <div id="information">    
      <div class="information1"> 
       This is the information. 
      </div> 
     </div> 
    </body> 
</html> 

回答

3
$("div.information1").wrap("<div id='information'></div>"); 

更多關於這裏的wrap()功能:http://api.jquery.com/wrap

+0

不知道「包裝」存在。真棒! – griegs 2011-05-30 01:36:55

+0

Doh!打敗我吧。 +1無論如何;-) – 2011-05-30 01:37:20

+0

哦,非常感謝,你真的救了我。 – 2011-05-30 01:38:16

0

你可以嘗試類似於:

$('#information').append('<div class="information>Text here</div>');