我需要检查字段patientid
的值是空还是空并打印警报。
以下代码无法正常运行:
<td width="75">Patient ID<font color="red">*</font></td>
<td width="166"><form:input path="patientid"/></td>
你能帮帮我吗?
答案 0 :(得分:0)
要检查输入值是否为空,请执行以下操作:
if(document.getElementById("yourInputsId").value !=""){
//do stuff if its not empty}
else{
//do other Stuff
}
答案 1 :(得分:0)
<form:input path="patientid"/>
不是html。
这应该让你开始:
<td width="75">Patient ID<font color="red">*</font></td>
<td width="166"><input type="text" id="patientid" onchange="
this.value==='' && alert( 'I am empty' );
"/></td>
或者您可以尝试这样做:
<td width="75">Patient ID<font color="red">*</font></td>
<td width="166"><input type="text" id="patientid" onchange="
this.value==='' && (this.value='I cannot be empty');
"/></td>