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

我想从属性文件中获取复选框的值。我应该如何得到它?

4

1 回答 1

0

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

$("#divid").html($(data).html() + "<input type='checkbox' id='checkplease' onclick='toggleCheckbox(this)' value=" + "<g:message code='close.button.label'/>" + "/>");
于 2014-08-15T05:53:28.670 回答