具有不完整 DOM 元素的 jQuery

发布于 2024-10-30 22:01:11 字数 1591 浏览 4 评论 0 原文

我的问题与 jQuery 和 DOM 元素有关。我需要一个如下所示的模板:

var threadreply = " <li class='replyItem'>"
                + "     <div class='clearfix'>"
                + "         ${tittle}"
                + "     </div>"
                + " </li>"
                ;
$.template( "threadreply", threadreply );

如您所见,这是一个列表元素。我的问题是当我用 $.tmpl 解析它时,它会检索没有

  • 的有效 DOM 元素。
  • 标签。

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    

    有什么方法可以在不重新格式化的情况下检索元素?

    我知道我可以使用带有有效 ul 标签并在每个 jQuery 模板循环内的模板来完成此操作,但我不使用 JSON,我无法将数据结构转换为 JSON。

    完整的示例如下:

    var threadreply = " <li class='replyItem'>"
                    + "     <div class='clearfix'>"
                    + "         ${tittle}"
                    + "     </div>"
                    + " </li>"
                    ;
    $.template( "threadreply", threadreply );
    
    var liElement = "";
    for( var i = 0; i < 150; i ++ ){
        liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    }
    $(liElement).appendTo("#ULElement");
    

    编辑

    我找到了此线程的解决方法: JQuery 对象到字符串这包括在获取对象的 .html() 之前将 $.tmpl 返回的每个 DOM 元素包装在 div 中:

    liElement = liElement + $('<div>').append( $.tmpl("threadreply", {"tittle": "hello"} )).html();
    

    300处理所有元素大约需要 290 毫秒。在循环内使用 appendTo() 时,需要超过 800 毫秒。

    My problem is related to jQuery and the DOM elements. I need a template like the following:

    var threadreply = " <li class='replyItem'>"
                    + "     <div class='clearfix'>"
                    + "         ${tittle}"
                    + "     </div>"
                    + " </li>"
                    ;
    $.template( "threadreply", threadreply );
    

    As you can see, this is a list element. My problem is when I parse it with $.tmpl, which retrieves a valid DOM element without the <li> </li> tags.

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    

    Is there any way I can retrieve the element without reformatting?

    I know I can do it with a template with a valid ul tag and inside an each jQuery template loop, but I'm not working with JSONs, I can't convert my data structures to JSON.

    The full example is as follow:

    var threadreply = " <li class='replyItem'>"
                    + "     <div class='clearfix'>"
                    + "         ${tittle}"
                    + "     </div>"
                    + " </li>"
                    ;
    $.template( "threadreply", threadreply );
    
    var liElement = "";
    for( var i = 0; i < 150; i ++ ){
        liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    }
    $(liElement).appendTo("#ULElement");
    

    EDITED

    I found a workaround with this thread: JQuery Object to String wich consists on wraping each DOM element returned by the $.tmpl in a div before get the .html() of the object:

    liElement = liElement + $('<div>').append( $.tmpl("threadreply", {"tittle": "hello"} )).html();
    

    With 300 elements it takes aprox 290ms in process all elements. With the appendTo() inside the loop, it takes more than 800ms.

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

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

    发布评论

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

    评论(2

    謸气贵蔟 2024-11-06 22:01:11

    您不会获得“li”元素,因为当您获得

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    

    “li”元素时,您会获得“li”元素的包含 html(或innerhtml)。

    html:

    <ul id="titleList">
    </ul>
    

    js:

    $.tmpl("threadreply", {"tittle": "hello"}).appendTo('#titleList');
    

    you do not get the 'li' element because when you do

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"} ).html();
    

    you get the contained html (or innerhtml) of the 'li' element.

    html:

    <ul id="titleList">
    </ul>
    

    js:

    $.tmpl("threadreply", {"tittle": "hello"}).appendTo('#titleList');
    
    偏爱你一生 2024-11-06 22:01:11

    您只需要字符串而不是真正的 DOM 元素。只需使用:

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"});
    

    在循环之外,需要将刚刚生成的HTML包装到一个新元素中,然后替换之前的li

    $('<li />').html(liElement).replaceAll('li#existingLiID');
    

    You just need the string and not a real DOM element. Just use:

    liElement = liElement + $.tmpl("threadreply", {"tittle": "hello"});
    

    Outside the loop, you need to wrap the HTML you just generated into a new element, and then replace the former li:

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