Using replace to replace the expression of words with a picture _javascript skill

Source: Internet
Author: User
Microblogging or forum on the common effect, the choice of expression inserted into the Text field, the display is similar to [haha] such a string, the following is the expression string into a picture of the expression of a way
Copy Code code as follows:

<div id= "Test" >abc</div>

Copy Code code as follows:

var face ={' [haha] ': ' ', ' [sweating] ': ' '}//full QQ expression See the end of this article

var reg =/\[.+?\]/g;

var str = ' [haha]abc[] [sweating] '; Here is the value of the text field that was obtained, and the simplicity of the string is used directly.

str = str.replace (reg,function (a,b) {

return Face[a];

});

document.getElementById (' Test '). InnerHTML = str;

QQ expression package and corresponding Face object: Http://pan.baidu.com/s/1qWPQbBu

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.