<td class="td_title"> <html:select property='insurantList[${status.index}].identityType' value="${
<tdclass="td_title"><html:selectproperty='insurantList[${status.index}].identityType'...
<td class="td_title">
<html:select property='insurantList[${status.index}].identityType' value="${insurant.identityType}">
<html:option value='1'>身份证</html:option>
<html:option value='2'>护照</html:option>
<html:option value='3'>军官证</html:option>
<html:option value='4'>港澳通行证</html:option>
<html:option value='5'>台胞证</html:option>
<html:option value='6'>驾驶证</html:option>
<html:option value='7'>其他证件</html:option>
</html:select>
</td>
<td class="td_title"><input type="text" name="insurantList[${status.index}].identityNo" value="${insurant.identityNo}" onblur="checkIdentityCard(this,'${tableId}','${status.index}');" maxlength="20"/></td>
先选取身份证在输入身份证号!怎么判断身份证号的长度是18位!不是alert(); 展开
<html:select property='insurantList[${status.index}].identityType' value="${insurant.identityType}">
<html:option value='1'>身份证</html:option>
<html:option value='2'>护照</html:option>
<html:option value='3'>军官证</html:option>
<html:option value='4'>港澳通行证</html:option>
<html:option value='5'>台胞证</html:option>
<html:option value='6'>驾驶证</html:option>
<html:option value='7'>其他证件</html:option>
</html:select>
</td>
<td class="td_title"><input type="text" name="insurantList[${status.index}].identityNo" value="${insurant.identityNo}" onblur="checkIdentityCard(this,'${tableId}','${status.index}');" maxlength="20"/></td>
先选取身份证在输入身份证号!怎么判断身份证号的长度是18位!不是alert(); 展开
1个回答
展开全部
function checkIdentityCard(obj) {
if (obj.value.length !== 18) {
alert('不是18位');
}
}
if (obj.value.length !== 18) {
alert('不是18位');
}
}
更多追问追答
追问
前题诗先判断下拉框的value的值是1身份证类型的
要不下面的别的就不能用了
追答
function checkIdentityCard(obj) {
var identityTypeValue = document.getElementById('identityType').value; // 假定select的id是identityType
if (identityTypeValue === 1 && obj.value.length !== 18) {
alert('不是18位');
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询