0

誰かがこのコードスニペットに向かって私を正しい方向に向けることができますか?

function validateForm() {
    var flag=1;
//i have array containg values some values array[]
    $(document).ready(function () {
      alert("what happened");
      //my form contains dynamically generated input fields..
     //i can't seem to generate the ids.. 
    var y=$("#inputfield"+array[1]).val();// seems to me like error in this line
    //{validation code using y}
    flag = 0;
});
if (flag === 0) {

    return false;
}

}

ここにhtml部分があります:

<form action="L4.php" method="post" onSubmit="return validateForm();">
<input type="submit">
</form>
4

2 に答える 2

0

これを試して、

function validateForm() {
    var flag=1;
    $('form input[type="text"]').each(function(){//looping for all textboxes
        if($(this).val()=="")//if the textbox is empty
            flag=0;
    });
    if (flag === 0) {
        alert('error');
        return false;
    }
    return true;// if ok then return true
}
于 2013-07-23T06:54:32.730 に答える