我需要帮助为我正在验证的对象创建一个javascript循环。验证工作,它显示警报,但它不关注该字段。它不会专注于该领域的原因是因为每当用户添加另一个帐户时该字段的id是唯一的。代码如下:
if ((theForm.LinkedAccts.value == "Yes")&&
(document.getElementById('DLAccount').selectedIndex == ""))
{
alert("Please enter the Delink Account number.");
document.getElementById('DLAccount').focus();
return (false);
}
谢谢!