0

誰かがこの検証の問題を解決する方法を教えてもらえますか?

作業中のアプリ用の特別な検証スクリプトを作成しようとしています。 いくつかの理由から、jquery val プラグインを使用したくありません。コードのレイアウトを取得するのは非常に簡単で、テキスト、テキストエリア、およびドロップボックスで機能していますが、チェックボックスとラジオボタンのチェックに行き詰まっています. 可視フィールドセットを見つけるようにコード化してから、それらの可視フィールドセット内で必要な[クラス名に「-required」が含まれる]チェックボックスとラジオフィールドを見つけます。

私のコードの同じ構造を維持しながら、どのように私が持っているものを調整して、チェックされていない上記をフィルタリングし、フォーム送信前にエラーメッセージを提供します. 商品タイプのドロップダウンで「ボート」を選択します。必要なチェックと無線フィールドを表示するには。

を試しましたnot(':checked')が、うまくいきません。私は立ち往生しています。助けてください。

私のjsfiddleはここにあります: http://jsfiddle.net/justmelat/X3CGW/

以下のhtmlとjquery:

    <form method="post" action="">
    <div id="holdErrMsg"></div>
    <fieldset id="mainSection" name="mainSection">
                <legend style="color:blue; font-weight:bold">Project Overview Section</legend>

                <table style="width: 100%">
                    <tr>
                        <td style="height: 33px; width: 178px;">Name<span style="color: red">*</span></td>
                        <td style="height: 33px"><input  id="1125" name="1125" class="1125-required" type="text" />1125</td>
                    </tr>
                    <tr>
                        <td style="height: 33px; width: 178px;">Email<span style="color: red">*</span></td>
                        <td style="height: 33px"><input id="1026" name="1026" class="1026-required" type="text" />1026</td>
                    </tr>
                    <tr>
                        <td style="width: 178px">Product Title</td>
                        <td><input  id="1089" name="1089" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="width: 178px">Product Type<span style="color: red">*</span></td>
                        <td><select id="1169" name="1169" class="1169-required">
                        <option value="">Select</option>
                        <option value="Cars">Cars</option>
                        <option value="Boats">Boats</option>
                        <option value="Planes">Planes</option>
                        </select>1169</td>
                    </tr>
                                        <tr><td>
                                        <button id="btnCatchReqFlds" type="button" name="btn">Check Required Fields</button>
                                        </td></tr>
                                    </table>
            </fieldset>

            <fieldset id="section-11" name="section-11">
                <legend style="color:fuchsia; font-weight:bold">Car Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:<span style="color: red">*</span></label></td>
                        <td style="height: 35px"><input id="1245" class="1245-required" name="1245" type="text" />1245</td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:<span style="color: red">*</span></td>
                        <td style="height: 35px">
                        <select id="1433" class="1433-required" name="1433">
<option value="">Select</option>
                <option value="Orange">Orange</option>
                        <option value="Blank">Blank</option>
                        <option value="Green">Green</option>
            </select>1433</td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>

            <fieldset id="section-12" name="section-12">
                <legend style="color:fuchsia; font-weight:bold">Plane Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color<span style="color: red">*</span>:</td>
                        <td style="height: 35px">
                                                <input type="checkbox" name="1433[]" id="1433[]" value="Orange" class="1433[]-required"/>Orange
                                                <input type="checkbox" name="1433[]" id="1433[]" value="Blue" class="1433[]-required"/>Blue
                                                <input type="checkbox" name="1433[]" id="1433[]" value="Green" class="1433[]-required"/>Green
                       >>1433[] </td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>
            <fieldset id="section-13" name="section-13">
                <legend style="color:fuchsia; font-weight:bold">Boat Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:<span style="color: red">*</span></td>
                        <td style="height: 35px">
                                                <input type="radio" name="1834" id="1834" value="None" class="valuetext 1834-required">None
                                                <input type="radio" name="1834" id="1834" value="All" class="valuetex 1834-required">All
                      &nbsp;&nbsp;|1834[] </td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Approver:</td>
                        <td style="height: 35px">
                                                <input type="checkbox" name="1149[]" id="1149[]" value"John  Marsh" class="1149[]-not_required"/>John Marsh
                                                <input type="checkbox" name="1149[]" id="1149[]" value"Phil Collins" class="1149[]-not_required"/>Phil Collins
                                                <input type="checkbox" name="1149[]" id="1149[]" value"Tom Green" class="1149[]-not_required"/>Tom Green
                       |1149[] </td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Engine:<span style="color: red">*</span></td>
                        <td style="height: 35px">
                                                <input type="radio" name="1898" id="1898" value="Type 1" class="valuetext 1898-required">Type 1
                                                <input type="radio" name="1898" id="1898" value="Type 2" class="valuetext 1898-required">Type 2
                      &nbsp;&nbsp;|1898 </td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset><br>
<fieldset id="section-1011" name="section-1011">
                <legend style="color:green; font-weight:bold">Misc Info Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1301" name="1301" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:</td>
                        <td style="height: 35px">
                        <select id="1302" name="1302">
                <option value="Orange">Orange</option>
                        <option value="Blank">Blank</option>
                        <option value="Green">Green</option>
            </select></td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1303" name="1303" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>


</form>

$("#section-11,#section-12,#section-13,#section-1011").hide();

var projtype = new Array(
        {value : 'Cars', sect_id : 'fieldset#section-11'},
        {value : 'Planes', sect_id : 'fieldset#section-12'},
        {value : 'Boats', sect_id : 'fieldset#section-13'}
    );
$("select#1169").on('change',function () {
var thisVal = $(this).val();
 var sect_id ="";
     //$('fieldset[id!="mainSection"]').hide();
    $(projtype).each(function() {
$(this.sect_id).hide();
        if(this.value == thisVal) {
        $(this.sect_id).show();
        }
    });        
$("#btnCatchReqFlds").on('click', function() {

    $("#holdErrMsg").empty();
    var chk_requiredButEmpty = $("fieldset:visible").find('input:checkbox[class*="-required"]').filter(function() {
        return not(':checked');
    });

    if (chk_requiredButEmpty.length) {
        chk_requiredButEmpty.each(function () {

            $("#holdErrMsg").append("Please fill in the " + this.name + "<br />");
        });
    }
    return !chk_requiredButEmpty.length;
});

}) </p>

4

1 に答える 1

1

アップデート:

これをよりクリーンで理解しやすくするには、必要なクラスを完全に分離する必要があると思います。また、有効なクラス名と id を使用することをお勧めしますが、それはあなたの呼び出しなので、html をそのまま使用して、クラスの横にある - を削除してこれを変更します。

<input type="checkbox" id="a1433[]" value="Orange" class="a1433[] required"/>Orange
                                                <input type="checkbox"  id="a1433[]" value="Blue" class="a1433[] required"/>Blue
                                                <input type="checkbox" id="a1433[]" value="Green" class="a1433[] required"/>Green

これで、以下が正常に機能します。

 var chk_requiredButEmpty = $("fieldset:visible input[type=checkbox].required").not(':checked');

オリジナル:

行を次のように変更する必要があると思います。

var chk_requiredButEmpty = $("fieldset:visible").find('input:checkbox[class*="-required"]').filter(function() {
    return $(this).not(':checked');
});

また、入力の ID は文字で始まる必要があります。それらはまだ機能する可能性がありますが、現在は無効です。

于 2012-06-02T17:47:57.847 に答える