How to handle JS saving, reading, line feed, and Json conversion errors _ javascript skills

Source: Internet
Author: User
The following error message is returned when JS saves and reads the line feed to Json: UnexpectedtokenILLEGAL. The specific solution is as follows. For more information, see Unexpected token ILLEGAL.

Solution:
1. Save:

The Code is as follows:


Varcont = encodeURI ($ ("# txtMessage_Content"). val (). replace (/% 0A/g, "brHH ");


2. Read:

The Code is as follows:


Entity [I]. Contents. replace (//, ">"). replace (/brHH/g ,"
")


Note:
The main idea is the replacement method.
Js directly captures the text. It seems that the carriage return cannot be caught, and encodeURI can catch % 0A.

The Code is as follows:


Replace (//, "> ")


This sentence is for processing JS injection.

The Code is as follows:


Replace (/brHH/g ,"
")


Here we will replace the one that replaces the carriage return and display it again.
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.