2
如何正確替換另一個div的內容的div的內容?jquery將#div的內容替換爲另一個#div的內容?
- DIV1
- DIV2
我想DIV2的內容是更換DIV1的內容
$('#start').load('#start_hidden');
如何正確替換另一個div的內容的div的內容?jquery將#div的內容替換爲另一個#div的內容?
我想DIV2的內容是更換DIV1的內容
$('#start').load('#start_hidden');
$('#div2').html($('#div1').html());
工作演示http://jsfiddle.net/M4v4M/
API:.replaceWith
http://api.jquery.com/replaceWith/
希望它滿足您的需要:)
代碼
$('#div2').replaceWith($('#div1').html());
THX那些東西真的很難找出查詢,因爲你必須將所有功能 – Rubytastic 2012-07-17 11:37:57
結合@ Rubytastic ....希望能幫助你;-) – 2012-07-17 11:39:39