如何使用jquery在另一个div中加载div内容?

时间:2011-04-27 11:57:29

标签: jquery asp.net forms master-pages

我有一个由母版页引用的网页内容表单。我需要将div的内容加载到另一个div中。我无法调用内容,因为jquery抛出错误。任何帮助都将得到真诚的赞赏。

提前致谢 S S HUSSAIN

2 个答案:

答案 0 :(得分:0)

尝试其中一个

//Copies the inner HTML of source
$("#id_of_target_div").html($("#id_of_source_div").html());

//moves the source div into target
$("#id_of_target_div").append($("#id_of_source_div"));

//Moves children of source into target
$("#id_of_target_div").append($("#id_of_source_div").children());

答案 1 :(得分:0)

尝试使用以下内容。

// you can copy the html and put it in the target div.
$('#target_div').html($('#source_div').html());

// You can clone the div and put it in target.
$('#source_div').clone().appendTo($('#target_div'));