Apache Struts 2 Documentation > Home > FAQs > How can I put a String literal in a Javascript call, for instance in an onChange attribute |
Using String literals in Javascript calls requires care in escaping quotes but leaving double quotes around the final value, like we expect in HTML attributes.
Here's an example of the right way to do this (thanks to John Brad):
onchange='"someFunc(this.form, \'abc\')"'
Notice that
When rendered, the statement is rendered without the pair of surrounding single quotes, and the literal String stays quoted.
onchange="someFunc(this.form, 'abc')"