是否可以在不仅在 html 中使用 javascript 的情况下将 jinja 变量分配给锚标记的 id?
Posted
技术标签:
【中文标题】是否可以在不仅在 html 中使用 javascript 的情况下将 jinja 变量分配给锚标记的 id?【英文标题】:Is it possible to assign jinja variable to id of an anchor tag without using javascript only in html? 【发布时间】:2021-06-29 22:15:50 【问题描述】:HTML 我已经为 pid 分配了 a1 并希望使用 jinja 变量 pid 给 id="a1"。
%with pid='a1' %
<a href="https://www.google.com/" id="pid" >Google</a>
%endwith%
【问题讨论】:
% endwith %
,应该放在下面使用 pid
。
谢谢你,但我的问题没有解决
【参考方案1】:
可以参考这段代码。
% for comp in Companies % # Companies is one of the tables
<div id="company_ comp.id ">
comp.establish_date
comp.name
</div>
<button onClick="toggleDiv("company_ comp.id ")">Show Content</button>
【讨论】:
以上是关于是否可以在不仅在 html 中使用 javascript 的情况下将 jinja 变量分配给锚标记的 id?的主要内容,如果未能解决你的问题,请参考以下文章