'2013/02'에 해당되는 글 1건

  1. 2013.02.06 javascript el tag quotation 따옴표

But the EL can be used to help create the JavaScript markup.

For example: var x = '${someValue}';
is perfectly valid. So if someValue has the toString() value of whatever, the statement that will be sent to the browser is:
var x = 'whatever';

Posted by Engineer135
,