(编辑问题,道歉) 我正在使用带有富3.3的jsf 1.2,我的代码片段如下: -
function clearAll()
{
alert('test alert');
document.getElementById('frm_Employee:empName').value ="";
}
.
.
.
<h:inputBox id="empName" .... />
<h:commandButton action="#{employeeBean.clearAll}" value=" Clear"
onclick="clearAll();" />
'test alert'打印但输入文本框empName未清除。我的代码出了什么问题。
提前感谢。