0

検証が失敗したときに JavaScript コードを終了するには、助けが必要です。現時点では、検証が失敗したときに正しいエラー メッセージが表示されますが、JavaScript コードは引き続き実行されます。以下の私のコードを見つけてください。ありがとう

var CompPlanID=1;
var Component=2;
var TierNo=3;
var StartDate=4;
var EndDate=5;
var TierMin=6;
var TierMax=7;
var Rate=8;
var InvalidFlag = 0;
var BlankTextBox = '';

function DateCheck()
{
    var StartDateform= document.getElementById('tblTarget').rows[1].cells[StartDate].getElementsByTagName('input')[0].value;

    var EndDateform= document.getElementById('tblTarget').rows[1].cells[EndDate].getElementsByTagName('input')[0].value;

    var eDate = new Date(EndDateform);
    var sDate = new Date(StartDateform);

    if(StartDateform== BlankTextBox || EndDateform == BlankTextBox || sDate> eDate)
    {
        alert("Please ensure that the End Date is greater than or equal to the Start Date.");
    InvalidFlag = 1;
        }   
}

// pk 行が空でないかどうかを確認します

function CheckPkRow()
{
    var CompPlanIDform= document.getElementById('tblTarget').rows[1].cells[CompPlanID].getElementsByTagName('select')[0].value;

  if(CompPlanIDform== BlankTextBox)
  {
    alert("Please ensure that the primary key is not empty");
    InvalidFlag = 1;

  }

}

function Submit() 
{

    InvalidFlag = 0;
    CheckPkRow();
    DateCheck();    

//検証が true の場合、submit 関数を呼び出します。

    if(InvalidFlag == 0 )
    {

    $('button_submit').click(); 
    alert('The new rate submitted');

    }

}
4

2 に答える 2

2
function CheckPkRow()
{
    var CompPlanIDform= document.getElementById('tblTarget').rows[1].cells[CompPlanID].getElementsByTagName('select')[0].value;

  if(CompPlanIDform== BlankTextBox)
  {
    alert("Please ensure that the primary key is not empty");
    InvalidFlag = 1;
    return false;
  }
}
于 2013-07-15T09:44:35.377 に答える