0

注文送信ページのプログラミング中にかなりの問題が発生しました。このページの目的は、注文の異議申し立てを送信することです。2つのフィールドに入力する必要がありますが、1つのフィールドが別のフィールドよりも小さい場合に限ります。

基本的に、1つはドロップダウンで、もう1つは紛争ボックスであり、クエリは次のとおりです。

DisputesTextBox=""およびドロップダウンボックス="選択してください..."の場合

すべて問題ありません-送信ボタンが有効になっています

DisputesTextBox!=""およびドロップダウンボックス="選択してください..."の場合

エラー(およびその逆の場合、紛争が発生しているがdropwn =選択してください...)-送信ボタンが無効になっている

DisputesTextox!=""およびドロップダウンボックス="その他"の場合

すべて問題ありません-送信ボタンが有効になっています

DisputesTextBox>shippedboxの場合

エラー-送信ボタンが無効になっています

<table>
                <thead>
                    <tr><th>Item ID</th><th>Description</th><th>Dispute Quantity</th><th>Shipped Quantity</th><th>Ordered Quantity</th><th>Reason</th></tr>
                </thead>
                <tbody>
                    <?php
                        $data = mysql_query("SELECT * FROM `artran09` WHERE `invno` = '$invoiceno'") or die(mysql_error());
                        echo "<center>";
                        $i = -1;        
                        echo "<form action=\"submitdispute.php?invno=".$invoiceno."&ordate=".$placed."\" method=\"POST\" onsubmit=\"return confirm('Are you sure you are ready to dispute your order?');\">";

                            while ($info = mysql_fetch_array($data)) {              
                                $i += 1;                                    
                                echo "<tr>"; 
                                echo "<td>".$info['item']."</td>"; 
                                echo "<td>".$info['descrip']."</td>";       

                                echo "<td><input type=\"text\" input name=".$i." onKeyPress=\"return numbersonly(this, event)\"  maxLength=\"3\"></td>"; 

                                echo "<td><input type=\"text\" value=".$info['qtyshp']." onKeyPress=\"return numbersonly(this, event)\" maxLength=\"3\" disabled=\"disabled\"></td>"; 

                                echo "<td><input type=\"text\" value=".$info['qtyord']." onKeyPress=\"return numbersonly(this, event)\" maxLength=\"3\" disabled=\"disabled\"></td>"; 

                                echo "<td><select name = \"reason$i\">";
                                echo "<option>Please Select...</option>";
                                echo "<option>Short/Not received</option>";
                                echo "<option>Damaged Goods</option>";
                                echo "<option>Product Not Ordered</option>";                    
                                echo "</select></td>";

                                echo "</tr>"; 
                            }

                    ?>
                </tbody>
            </table>
        </div>
    </div>
    <p><input type = "submit" value = "Dispute" name ="Submit">
    </form>

ありがとう、誰もが助けることができることを願っています!

ウルフ/助けることができる人のために編集されました-ここでこのコードはどうなっていますか:

-私が編集したコード-

function validateSubmit(){


   // this will loop through each row in table
   // Make sure to include jquery.js
   $('tr').each( function() {
      // Find first input
      var input1 = $(this).find('input').eq(0);
      var qty1 = input1.val();
      // Find Second input
      var input2 = $(this).find('input').eq(1);
      var qty2 = input2.val();
      // Find third input
      var input3 = $(this).find('input').eq(2);
      var qty3 = input3.val();
      // Find select box
      var selectBx = $(this).find('select');
      var selectVal = selectBx.val();
      // Add your validation code here for the inputs and select
      // Return true if all validations are correct
      // Else return false
        if(qty1 = "" && selectVal = "Please Select...") {
            return true;
            alert("You have an error somewhere, please check over your quantites.");
            break;
        }
        if (qty1 > qty2) {
            return false;
            alert("You have an error somewhere, please check over your quantites.");
            break;
        }
   });


}
4

1 に答える 1

0
        return true;
        alert("You have an error somewhere, please check over your quantites.");
        break;

return を呼び出すと、現在の関数の実行が即座に停止され、値が返されます。これは、return ステートメントの後に何も実行されないことを意味します。alert()関数は で終わるため、 は実行されませんreturn true

于 2013-01-19T12:24:21.670 に答える