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.
私はこのような文字列を持っています:だから、私は文字をjQueryを使っvar a="hello :D". て置き換えたいと思っています。:<img>
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\' />');