我有一个函数返回某种字符串字符串不是静态的而是动态的
<code of script function>
var error_msg = sendPinAjaxResponse("some url");
我正在使用 spring 消息标签来更改语言
$("#error_div").html('<spring:message javaScriptEscape="true" code="static string" />')
当我传递静态字符串时,它工作正常
但我想存储 var 的动态值,现在我正在使用 var 'error_msg'
$("#error_div").html('<spring:message javaScriptEscape="true" code= error_msg />')
它在jsp页面上给出了一个例外
quote symbol expected