Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

json - show text value of html © entity in input type=text?

I'm loading a value from a json file which contains a copyright character. It's stored in the json as a html entity - © which renders ©.

Handlebars is rendering a file editor for me in such a way that if the string is long it gets made into a textarea, and if it's short then it becomes a text input box instead. When rendered to a <textarea> the value is shown as its string version - something like &copy; 2013 blah foo inc, whereas if the value is written to a <input type='text'> value, then the browser renders it as its entity equivalent, no the string itself. I can't figure out how to make the text value of the entity itself appear, not its interpreted shape.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

The trick is to change &copy; into &amp;copy;. When displayed &amp; turns into &.

The question doesn't specify the language, but in JavaScript you'd do

var content = "&copy; 2013 blah foo inc";
var encoded = content.replace( /&/g, '&amp;' );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...