gpt4 book ai didi

html - 如何在下拉菜单中显示我的 'Artist' 类别?

转载 作者:太空宇宙 更新时间:2023-11-04 13:23:42 25 4
gpt4 key购买 nike

我目前正在为一个 Bigcartel 网站定制主题“Sidecar”,我正在尝试添加一个下拉菜单,该菜单仅在固定侧边栏上填充艺术家链接。

我试过只使用简单的代码来包围 ,但这似乎不起作用。它不会掉下来,也不会显示任何东西,除了下图所示。

有人能帮忙吗?

在我添加下拉列表之前 - https://db.tt/gYoAFdW3

然后在我应用下面的代码之后 - https://db.tt/w3UFxzoA

{% if artists.active != blank %}
<section>
<h2 class="title">Artists</h2>
<select>
<ul>
{% for artist in artists.active %}
<li>
<a href="{{ artist.url }}" class="page {% if page.full_url contains artist.url %}current{% endif %}">
{{ artist.name }}
</a>
</li>
{% endfor %}
</ul>
</select>
</section>
{% endif %}

最佳答案

  {% if artists.active != blank %}
<section>
<h2 class="title">Artists</h2>
<select onchange="location = this.options[this.selectedIndex].value;">
{% for artist in artists.active %}
<option value="{{ artist.url }}">{{ artist.name }}</option>
{% endfor %}
</select>
</section>
{% endif %}

关于html - 如何在下拉菜单中显示我的 'Artist' 类别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23866164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com