Use replace to replace a text expression with image_javascript

Source: Internet
Author: User
When you select an emoticon to insert a text field, a string similar to [Haha] is displayed. Below is a method to convert an emoticon string to an image emoticon, which is common in Weibo or forum, when you select an emoticon to insert a text field, a string similar to [Haha] is displayed. Below is a method to convert an emoticon string to an image emoticon.

The Code is as follows:


Abc



The Code is as follows:


Var face = {'[Haha]': '', '[sweating]':''} // For the complete QQ expression, see the end of this article.

Var reg =/\ [. +? \]/G;

Var str = '[Haha] abc [sweating] [sweating]'; // here is the value of the obtained text field. For simplicity, strings are directly used.

Str = str. replace (reg, function (a, B ){

Return face [a];

});

Document. getElementById ('test'). innerHTML = str;


Qq table package and corresponding face object: http://pan.baidu.com/s/1qWPQbBu
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.