我有一个由母版页引用的网页内容表单。我需要将div的内容加载到另一个div中。我无法调用内容,因为jquery抛出错误。任何帮助都将得到真诚的赞赏。
提前致谢 S S HUSSAIN
答案 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'));