如何从jquery.html()函数中的属性文件中获取值

时间:2013-08-29 11:21:16

标签: jquery grails gsp

$("#divid").html($(data).html() + "<input type="checkbox" id="checkplease" onclick="toggleCheckbox(this)"/>  value="<g:message code="property.value" />");

我想从属性文件中获取复选框的值。我应该怎么做到?

1 个答案:

答案 0 :(得分:0)

您正在混合报价,试试这个:

$("#divid").html($(data).html() + "<input type='checkbox' id='checkplease' onclick='toggleCheckbox(this)' value=" + "<g:message code='close.button.label'/>" + "/>");