我正在尝试将文本转换为我的Javascript代码中的链接。这应该有效,但事实并非如此。
var strLink = <a href="xxx" style= "text-decoration:none; color:#fff;">"mysite.com" </a>;
var cb_header = chatbox.find('.imjs-header');
cb_header.html(cb_header.html().replace('{username}', strLink));
我有一个名为username的变量,它是一个字符串。这是用于替换{username}的字符串。也许我可以使用jquery?我似乎无法得到它的链接。任何指向正确的方向都非常感谢。
谢谢你, 阿琼
答案 0 :(得分:1)
var strLink = '<a href="xxx" style= "text-decoration:none; color:#fff;">"mysite.com" </a>'
;
答案 1 :(得分:0)
试试这个:
var strLink = '<a href="xxx" style= "text-decoration:none; color:#fff;">"mysite.com" </a>';