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