从另一个 div 检索内容并应用于新 div

发布于 2024-12-22 03:58:43 字数 454 浏览 0 评论 0原文

我有一个动态创建 div 框并通过 AJAX 加载放置在框内的图像的应用程序。

如果一个框已经存在,我不想再次加载图像(通过 AJAX)。相反,内容(即图像)应该从第一个框中抓取并应用到新的框中。

因此我想做这样的事情: “如果存在一个盒子,则从该盒子中检索内容并将其应用到新盒子中。”

下面是一段代码,显示了我想要的内容。我需要知道的是如何查明一个盒子是否存在(第 1 行)以及如何应用新盒子中的内容(第 3 行)。

1. if (box exist...?) {
2.    var content = $('.boxContent').html();
3.    $('.boxContent') ?
4. }
5.
6. else {
7. 
8. // retrieve the images through AJAX and place in the box...
9.
10. }

I have an application that's dynamically creates div boxes and through AJAX loads images that are placed inside the boxes.

If a box already exists I don't want to load the images (through AJAX) again. Instead the content (ie. the images) should be grabbed from the first box and applied in the new one.

By that reason I want to do something like this:
"If one box exists, retrieve the content from that box and apply it in the new box."

Below is a piece of code that shows what I want. What I need to know is how to find out if a box exists (line 1) and how to apply the content in the new box (line 3).

1. if (box exist...?) {
2.    var content = $('.boxContent').html();
3.    $('.boxContent') ?
4. }
5.
6. else {
7. 
8. // retrieve the images through AJAX and place in the box...
9.
10. }

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

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

发布评论

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

评论(3

暖树树初阳… 2024-12-29 03:58:43
if ($('.boxContent').is('*')) { //it exists
    var content = $('.boxContent').html(); 
    var newBox = $('<div id="new-box"></div>');
    newBox.html(content);
}

或者,您可以克隆:

if ($('.boxContent').is('*')) { //it exists
    var newBox = $('.boxContent').clone(); 
    // newBox is an EXACT copy of the .boxContent
}

在这种情况下,我建议使用 ID 而不是类选择器。

if ($('.boxContent').is('*')) { //it exists
    var content = $('.boxContent').html(); 
    var newBox = $('<div id="new-box"></div>');
    newBox.html(content);
}

Alternatively, you can clone:

if ($('.boxContent').is('*')) { //it exists
    var newBox = $('.boxContent').clone(); 
    // newBox is an EXACT copy of the .boxContent
}

I would recommend using an ID instead of a class selector in this case.

泪冰清 2024-12-29 03:58:43

你可以通过简单地选择某些东西并查看集合的长度来判断 DOM 中是否存在某些东西:

var boxes = $('.boxContent')
if (boxes.length) {
  var content = boxes[0].html();
} else {
  // AJAX
}

you can tell if something exists in the DOM by simply selecting it and loooking at the length of the collection:

var boxes = $('.boxContent')
if (boxes.length) {
  var content = boxes[0].html();
} else {
  // AJAX
}
蓝眼泪 2024-12-29 03:58:43

检查 jQuery 中某个元素是否可用的正确方法是:

if($('element').length != 0){//element exists
        `$('newElement').html($('element').html());`
}
else{
     //ajax stuff
}

The proper way to check if some element is available in jQuery is:

if($('element').length != 0){//element exists
        `$('newElement').html($('element').html());`
}
else{
     //ajax stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文