我想用jquery更改我的标签文本,如:
$('#mylabel').text(<spring:message code="mytext" text="mytext" />);
但我得到的只是一个ReferenceError:没有定义TestText。
TestText是我的消息代码背后的值。有谁能告诉我出了什么问题?
答案 0 :(得分:1)
由于该值是字符串文字,因此应将其括在''
$('#mylabel').text('<spring:message code="mytext" text="mytext" />');