HTML代码:-
{% for post in posts %}
<article class="media content-section">
<div class="media-body">
<h2><a id="post_title" class="article-title" href="{% url 'post-detail' post.slug %}">{{ post.title }}</a></h2>
<div class="article-metadata">
<a class="mr-2" href="{% url 'blog-profile' name=post.author %}">{{ post.author }}</a>
<div class="float-right">
<small class="text-muted">Category</small>
<small class="text-muted">{{ post.date_posted }}</small>
</div>
<div style="float:right;">
<img style="height:19px; width:18px;" src="{% static "blog/viewicon.png" %}">
<p style="float: right; display: inline !important;" id="ViewCount">
</p>
</img>
</div>
</div>
<p class="article-content">{{ post.content|truncatechars:200|safe }}</p>
</div>
<script>
function changeid ()
{
var e = document.getElementById('post_title');
e.id = 'post_title_1';
var e = document.getElementById('ViewCount');
e.id = 'ViewCount_1';
}
</script>
</article>
{% endfor %}
我正在尝试更改这两个标签的 ID,但是这个脚本似乎不起作用,或者它没有被执行。我想更改该 ID,因为我想从服务器向它们插入一些数据。由于我们不能拥有相同的 ID,因此我尝试嵌入的数据默认嵌入到循环的第一次运行中。
FFIVE
慕森王
鸿蒙传说
相关分类