Js carriage return handling method and replace method _ javascript tips-js tutorial

Source: Internet
Author: User
When we enter text in the text box and press enter, we hope that after the submission, the web page will also display the effect of line breaks, which often cannot be fulfilled, I am so angry that I wrote a function for handling line breaks by carriage return. If you are interested, I hope this article will help you. When we enter text in the text box and press enter, we hope that after the submission, the web page will also display a line feed effect. At this time, we need to process the submitted content.

To achieve the effect.
1. Define native replacement functions of js. Js does not have the replaceAll function. We need to customize it.

The Code is as follows:


String. prototype. replaceAll = function (s1, s2 ){
Return this. replace (new RegExp (s1, "gm"), s2 );
}


2. Use js replace for processing

The Code is as follows:


Str = str. replaceAll ("\ n ","
")


In this way, we can achieve the effect of js carriage return and line feed!
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.