How to solve the problem that the js assignment contains single quotes and double quotation marks

Source: Internet
Author: User

My page is a jsp page, which contains a parameter: lefttree,

This lefttree is spelled out from the background and contains html code: for example:
Copy codeThe Code is as follows:
<Div class = "test" onclick = "show ('tt1', 'abc')">

On the jsp page, you need to pay this value to a div using the js Code, as shown below:
Copy codeThe Code is as follows:
<Script type = "text/javascript">
Response response parent.doc ument. getElementById ('mptree '). innerHTML =' <% = lefttree %> ';
<Script>

In this way, because lefttree contains both single quotation marks and double quotation marks, the matching error with the single quotation marks at the outermost layer when values are assigned in js becomes:
Copy codeThe Code is as follows:
'<Div class = "test" onclick = "show ('tt1', 'abc')">'

Solution:

Escape Character "/"

When splicing lefttree in the background, it becomes the following form:

Copy codeThe Code is as follows:
<Div class = "test" onclick = "show (// 'tt1 // ', // 'abc //')">

Where:

The first two "//" are used to save a "/" on the page.

The third "/" is used to escape the single quotation marks.

In this way, the lefttree value in the webpage is:
Copy codeThe Code is as follows:
<Div class = "test" onclick = "show (/'tt1/',/'abc/')">

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.