0

我需要检查多个文本区域是否为空,然后才能在 mysql 数据库中写入任何数据。表单是动态生成的,我不知道文本区域的 ID/名称。

具有多个动态生成的文本区域、id 和动态生成的名称的表单:

<form action=\"$self\" method=\"POST\" id=\"daily_frm\"  enctype=\"multipart/form-data\">   
 <table border=\"1\" cellspacing=\"2\" cellpadding=\"2\" id=\"tb_daily\" class=\"tb_daily\" width=\"100%\">
  <tr>
  <th scope=\"col\" id=\"col_stn\">Station</th>
  <th scope=\"col\" id=\"col_comm\">Comment</th>
  <th scope=\"col\" id=\"qcif\">QCIF</th>
  <th scope=\"col\" id=\"attach\">Attachment</th>
 </tr>"; 

while ($stn_b = mysql_fetch_array($station_b)){
  print "<tr>
           <td>$stn_b[station]</td>
           <td><textarea id=\"$stn_b[station]_comment\" cols=\"60\" rows=\"5\" value=\"\"></textarea></td>
           <td><input type=\"checkbox\" id=\"$stn_b[station]_qcif\" value=\"1\"/></td>
          <td><input id=\"$stn_b[station]_attach\" type=\"file\" />
        </tr>       
        ";
}

print"
<tr><td colspan=\"4\"><input type=\"submit\" value=\"Submit\" name=\"submit_daily\" id=\"submit_daily\"><input type=\"reset\" name=\"clear_daily\" value=\"Clear\"></td></tr>
</table>
</form>

单击提交按钮时,我检查文本区域是否为空的方法:

<script type='application/javascript'>

$(document).ready(function(){

    $('#daily_frm').submit( function () {
     $('#daily_frm textarea').each(function(){
     if ($(this).val()==='') {

    alert($(this).attr('id') + ' field is empty');
    $(this).focus();
    return false;

   }
 });
    });
});

我得到带有相应文本区域名称的警报框。

我的 php 代码将所有内容写入数据库:

if (isset($_POST['submit_daily'])){

while ($stn_b = mysql_fetch_array($station_b)){
    $s = $stn_b['station'];
    $sid = $stn_b['idtb_station'];

    $daily_comment = addslashes($_POST[$s."_comment"]);


    if(!empty($_POST[$s."_qcif"])) {
        $qcif = $_POST[$s."_qcif"];
        echo "$qcif<br />"; 
    }   else {
        $qcif = "0";
    }


    $post_daily_sql = "INSERT INTO tb_daily tb_station_idtb_station,date,author,comment,upload) VALUES ('$sid','$today','$user','$daily_comment','$qcif')"; 
}   
}

我现在的问题是,如果文本区域为空,我会收到警报框,但我的脚本仍然继续尝试写入数据库(我知道 php/mysql 部分不完整)。有什么提示吗?谢谢!

4

1 回答 1

0

尝试类似:

$(document).ready(function(){
    $('#daily_frm').submit( function (evt) {
        evt.preventDefault();
        var errCount = 0;
        $('#daily_frm textarea').each(function(){
            if ($(this).val()==='') {
                alert($(this).attr('id') + ' field is empty');
                $(this).focus();
                errCount++;
            }
        });
        if( errCount > 0 ) {
            reutrn false;
        }
        else {
            return true;
        }
    });
});
于 2012-08-29T09:09:27.837 回答