如何附加(或其他方法)大量 HTML 代码?

发布于 2024-11-18 04:20:16 字数 393 浏览 1 评论 0原文

我需要附加很多 HTML 代码。为了提高可读性,我不想将它们全部写在一行中,而是将它们拆分为常规 HTML。大概是 15 个新行之类的。问题是 JavaScript 不允许我这样做。

var target = $('.post .comment_this[rel="' + comment_id + '"]').parent().parent();

target.append('
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
');

基本上,我需要在那个地方添加 HTML。

我还需要添加一些变量。

I need to append a lot of HTML code. To improve readability, I don't want to write that all in one line, but split them as regular HTML. That would be like 15 new-lines or something. The problem is that JavaScript doesn't allow me to do that.

var target = $('.post .comment_this[rel="' + comment_id + '"]').parent().parent();

target.append('
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
');

Basically, I need to add HTML in that place.

I need to add some variables too.

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

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

发布评论

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

评论(6

初心未许 2024-11-25 04:20:16
    target.append(' <div class="replies">'+
            '<p>...</p>'+
            '<img src="" alt="" />'+
        '</div>'
    );

或者

    target.append(' <div class="replies">\
            <p>...</p>\
            <img src="" alt="" />\
        </div>'
    );
    target.append(' <div class="replies">'+
            '<p>...</p>'+
            '<img src="" alt="" />'+
        '</div>'
    );

or

    target.append(' <div class="replies">\
            <p>...</p>\
            <img src="" alt="" />\
        </div>'
    );
把时间冻结 2024-11-25 04:20:16
target.append(' ?>
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
<?');

使用关闭/打开 php 标签分隔 html 和 php,它应该可以正常工作。
在 html 中添加 var 时,只需再次使用标签,如下所示:

target.append(' ?>
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
<?');

Separate the html and php with the close/open php tags and it should work fine..
when adding var's in the html, just use the tags again, like this: <? $hello ?>

甜妞爱困 2024-11-25 04:20:16

如果你想在html中插入变量,你可以使用一些模板库,比如 jQuery.template

If you want to insert variables to html, you can use some templating library like jQuery.template

这个俗人 2024-11-25 04:20:16

自 2015 年 ECMA 6 起,您可以执行以下操作:

target.append(`
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
`);

As of 2015, ECMA 6, you can do this:

target.append(`
    <div class="replies">
        <p>...</p>
        <img src="" alt="" />
    </div>
`);
海的爱人是光 2024-11-25 04:20:16

使用 html() 而不是追加

target.html('<div class="replies"><p>...</p><img src="" alt="" />,</div>');

use html() instead of append

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