在 jquery 中附加 Django 模板标签

发布于 2024-09-16 19:11:38 字数 373 浏览 3 评论 0 原文

<script>
    $("#tableview").css({'display' : block});
    $("#tableview").append('{{html}}');  
    or
    $("#tableview").html('{{html}}');
</script>

<div id="tableview" style="display:none;"></div>

显示在服务器上生成的 {{html}} ie,即

contetssdddddddd
。这显示在 UI 上

如何嵌入正文中的 html

<script>
    $("#tableview").css({'display' : block});
    $("#tableview").append('{{html}}');  
    or
    $("#tableview").html('{{html}}');
</script>

<div id="tableview" style="display:none;"></div>

the {{html}} i.e, generated on the server gets displayed which is,<div id=""newdiv">contetssdddddddd</div>.This is displayed on the UI

how to embed the html in the body

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

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

发布评论

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

评论(1

清晨说晚安 2024-09-23 19:11:38

{{ html|escapejs }}append() 一起使用

阅读此内容

use {{ html|escapejs }} with append()

read this

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