http自动链接脚本在bootstrap div上不起作用

时间:2013-08-14 07:20:36

标签: javascript

我正在使用bootstrap div制作自动链接脚本

text = text.replace(/((http:|https:)\/\/[\x21-\x26\x28-\x7e]+)/gi, "<a href='$1'>$1</a>");


item.addClass('well well-small')
    .append($('<div/>').text(text))
    .children('div').children('i').after(username);

href链接在此DIV中不可用。

bootstrap有解链接标记的功能吗?

1 个答案:

答案 0 :(得分:1)

我认为您的意思是.html而不是.text

.append($('<div/>').html(text))