0

我正在制作一个小型社交网站。像 twitter 和 facebook 一样,人们会在这个网站上发布带有主题标签的帖子。当他们提交他们的帖子时,他们帖子中的主题标签词将被视为可点击的链接,并且该链接将转到主题标签页面,其中显示包含相同主题标签的其他帖子。

我的问题是如何在帖子中显示主题标签词,例如指向其页面的链接。

例子:

如果有人发帖

我#love在雨中奔跑。

单词#love 将以不同的颜色显示并且可点击,href 将是 www.example.com/love

4

1 回答 1

0

Think of the hashtag as just another word you write in the HTML,

For you example it should look something like this:

<a href="http://www.example.com/love">#love</a>

That's the linking part

If you want to make it with color green for example it should look like this:

<a href="http://www.example.com/love"><span style="color:green">#love</span></a>
于 2013-07-02T22:36:57.013 回答