如何在java脚本函数中存储Spring消息标记中的var值?

时间:2016-09-22 12:21:10

标签: javascript spring spring-mvc jstl spring-messaging

  

我有一个函数正在返回某种字符串字符串   不是静态的,它是动态的

<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

1 个答案:

答案 0 :(得分:-1)

试一试:

$("#error_div").html('<spring:message javaScriptEscape="true" code="' + error_msg + '"/>')