Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

how to show <html> in textarea

In textarea, I load text from database and then show in textarea. I have a problem, textarea not show &lt; and &gt;. It has been changed to < and > .

<textarea>&gt;html&gt;</textarea>

in textarea , change to . I want to show &lt;html&gt; , how to make it ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Escape the & by using &amp;.

Change this:

<textarea>&lt;html&gt;</textarea>

To this:

<textarea>&amp;lt;html&amp;gt;</textarea>

If you're using PHP you can automatically do this with htmlspecialchars().


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...