我编写了以下 javascript 代码,现在我想添加另一个条件/更改现有条件以不接受零。
if ( !onlyNumbers($(".vo_head_spots_available:eq(" + i + ")").val())&& $(".vo_head_spots_available:eq(" + i + ")").val().toUpperCase()!="U")
{
$('#msg_f').html('Please enter the # spots available for your Participants. If unlimited, enter U.').show();
$(".vo_head_spots_available:eq(" + i + ")").css('background-color', '#fdd');
isValid = false;
}
else
{
$(".vo_head_spots_available:eq(" + i + ")").val($(".vo_head_spots_available:eq(" + i + ")").val().toUpperCase());
$('#msg_f').html('').hide();
$(".vo_head_spots_available:eq(" + i + ")").css('background', '');
}