英文:
how to put here hyperlink for this date?
问题
如何在此处创建日期超链接?我希望这个随机日期可以链接到某个随机的互联网链接。
<v-list-item-content>
<v-list-item-title>
<a href="你的互联网链接">02.06.2023</a>
</v-list-item-title>
</v-list-item-content>
英文:
How to put here hyperlink for this date? I want this random date to lead me to some random internet-link
<v-list-item-content>
<v-list-item-title>
02.06.2023
</v-list-item-title>
</v-list-item-content>
答案1
得分: 1
只需将日期包装在锚标签中。
<v-list-item-content>
<v-list-item-title>
<a href="http://www.google.com">02.06.2023</a>
</v-list-item-title>
</v-list-item-content>
英文:
Just wrap the date in an anchor tag.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
<v-list-item-content>
<v-list-item-title>
<a href="http://www.google.com">02.06.2023</a>
</v-list-item-title>
</v-list-item-content>
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论