如何在这里添加此日期的超链接?

huangapple go评论83阅读模式
英文:

how to put here hyperlink for this date?

问题

如何在此处创建日期超链接?我希望这个随机日期可以链接到某个随机的互联网链接。

    <v-list-item-content>
        <v-list-item-title>
            <a href="你的互联网链接">02.06.2023</a>
        &lt;/v-list-item-title&gt;
    &lt;/v-list-item-content&gt;
英文:

How to put here hyperlink for this date? I want this random date to lead me to some random internet-link

&lt;v-list-item-content&gt;
            &lt;v-list-item-title&gt;
                02.06.2023
            &lt;/v-list-item-title&gt;
&lt;/v-list-item-content&gt;

答案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 -->

&lt;v-list-item-content&gt;
            &lt;v-list-item-title&gt;
           &lt;a href=&quot;http://www.google.com&quot;&gt;02.06.2023&lt;/a&gt;
            &lt;/v-list-item-title&gt;
        &lt;/v-list-item-content&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年2月8日 23:59:25
  • 转载请务必保留本文链接:https://go.coder-hub.com/75388455.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定