Wiki source code of TestJSEncoding

Last modified by Ludovic Dubost on 2009/04/26 22:27

Show last authors
1 1 JS Encoding
2
3 <%
4
5 def getJSEncoded(String origtext) {
6 String text = origtext.replaceAll("\\\\", "\\\\");
7 text = text.replaceAll("'", "\\\\'");
8 text = text.replaceAll("\"", "\\\\x22");
9 return text;
10 }
11
12 text = getJSEncoded("c'est l'été \"test\"")
13 %>
14 {pre}
15 <input type="button" name="a" value="click" onclick="alert('$text');" />
16 {/pre}