如何从字符串中的数据创建超链接?

时间:2013-04-29 07:56:00

标签: python html hyperlink wsgi

我有一个元组,它被转换为字符串并以HTML格式输出。该字符串包含指向页面的链接(例如http://www.google.com),但该链接实际上并未链接到google.com,因为它只是将其视为文本。

有人可以帮助我解决这个问题吗?这是我的代码:

commentString = ''
callComments = (interface.list_comments(db,10))
for comment in callComments:
    commentString += str(comment) + '<br> <br>'

content = {'comments': '<p>%s</p>' % commentString,
           }

HTML SIDE:

<div class = "comments">
<p>These are some comments:</p>
 %comments
</div>

1 个答案:

答案 0 :(得分:0)

在HTML中,标签会创建超链接。 http://www.w3schools.com/tags/tag_a.asp