-1

我有一个函数返回某种字符串字符串不是静态的而是动态的

<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
4

1 回答 1

-1

试试看:

$("#error_div").html('<spring:message javaScriptEscape="true" code="' + error_msg + '"/>')
于 2016-09-22T12:32:39.020 回答