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

发布于 2024-11-04 05:45:24 字数 104 浏览 0 评论 0原文

我有一个由母版页引用的 Web 内容表单。我需要将 div 的内容加载到另一个 div 中。我无法调用内容,因为 jquery 抛出错误。任何帮助将不胜感激。

提前致谢 侯赛因号

I have one web content form referenced by master page. i need to load the content of div into another div. I am unable to call the content as jquery throws error. Any help will be truely appreciated.

Thanks in advance
S S HUSSAIN

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手长情犹 2024-11-11 05:45:24

尝试其中之一

//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());

Try one of these

//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());
星光不落少年眉 2024-11-11 05:45:24

尝试使用以下内容。

// 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'));

Try using the following.

// 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'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文