0

フォームがあり、送信中に特定のテキスト ボックスのセットのみをループし、テキスト ボックスの値が空白/null の場合は、「ラベル名 - テキスト フィールドの値」のようにアラートを表示する必要があります。テキスト ボックスのセット, 特定の方法で ID を定義する必要があると思います.アプローチ。ありがとう。

<form>
<table>
<tr id=""><td width='5%'><label> Row 1 :</label></td>other text boxes</tr>
<tr id=""><td width='5%'><label> Row 2 :</label></td><td width='10%'><input type='text' id=textbox1 name=text1></td></tr>
<tr id=""><td width='5%'><label> Row 3 :</label></td><td width='10%'><input type='text' id=textbox1 name=text1></td></tr>
<tr id=""><td width='5%'><label> Row 4 :</label></td><td width='10%'><input type='text' id=textbox1 name=text1></td></tr>
</table>
</form>
4

1 に答える 1

1

jsFiddle

HTML

<form>
    <table>
        <tr id="">
            <td width='5%'>
                <label>Row 1 :</label>
            </td>
            <td width='10%'>
                <input type='text' class="required" name="text1" />
            </td>
        </tr>
        <tr id="">
            <td width='5%'>
                <label>Row 2 :</label>
            </td>
            <td width='10%'>
                <input type='text' class="required" name="text2" />
            </td>
        </tr>
        <tr id="">
            <td width='5%'>
                <label>Row 3 :</label>
            </td>
            <td width='10%'>
                <input type='text' class="required" name="text3" />
            </td>
        </tr>
        <tr id="">
            <td width='5%'>
                <label>Row 4 :</label>
            </td>
            <td width='10%'>
                <input type='text' class="required" name="text4" />
            </td>
        </tr>
    </table>
    <tr>
        <td colspan="2">
            <input type="button" id="btnSubmit" value="Submit" />
        </td>
    </tr>
</form>

jQuery

$(function () {
    $('#btnSubmit').click(function () {
        var requireds = $(':text.required');
        requireds.each(function (i) {
            if ($(this).val() === "") {
                var label = $(this).closest('tr').find('label').text();
                alert(label + 'is empty!');
            }
        });
    });
});
于 2013-09-16T04:02:46.530 に答える