我正试图找出代码中的错误。谷歌搜索几个小时之后,我不明白我的代码中有什么错误(最常见的答案是检查隐形空间......我在jsfiddle中检查过,但无济于事。)
以下是jquery代码。
function resetForm() {
$('input[id="accomodationRemarks"]').val("${trUpdateBean.accomodationRemarks}");
document.forms[0].reset();
}
以下struts代码可以理解细节
<html:hidden property="accomodationRemarks" name="trUpdateBean" styleId="accomodationRemarks"/>
我一直在开发人员工具控制台中获取未捕获SyntaxError: Unexpected token ILLEGAL error
。
我在macbook air中使用谷歌浏览器。