$("#divid").html($(data).html() + "<input type="checkbox" id="checkplease" onclick="toggleCheckbox(this)"/> value="<g:message code="property.value" />");
我想从属性文件中获取复选框的值。我应该怎么做到?
答案 0 :(得分:0)
您正在混合报价,试试这个:
$("#divid").html($(data).html() + "<input type='checkbox' id='checkplease' onclick='toggleCheckbox(this)' value=" + "<g:message code='close.button.label'/>" + "/>");