Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的字符串:var a="hello :D". 所以,我想将:char 替换为<img>使用 jQuery。
var a="hello :D".
:
<img>
我是这样做的: var message = a.replace(':', '<img src=\'emoticon/01.gif\' />');
var message = a.replace(':', '<img src=\'emoticon/01.gif\' />');
但是在运行我的应用程序时它不起作用!请帮助我,非常感谢!
使用反斜杠转义:
现场演示
var result = a.replace(':', '<img src=\'emoticon/01.gif\' />');