-1
<html>
<head>
<script>
function A(){
    $('input[name="B[]"]').each(function() { 
        if(('$(this) .BtnSet .Child input:text[name="A[]"]').length){
         //yes the Child class is inside JRow class and has textboxes with name A[]
        }
    });
    return false;
}
</script>
</head>
<body>
<form onsubmit="return A()">
    <div class="row JRow">
     <input type="text" name="B[]"></input>
     <input type="text" name="B[]"></input>
        <div class="BtnSet">
            <div class="Child">
                <input type="text" name="A[]"></input>
                <input type="text" name="A[]"></input>
            </div>
        </div>
    </div>
    <input type="submit" value="Submit"></input>
</form>
</body>
</html>

Child クラスが行 JRow クラス内にあるかどうかを確認する必要があります。そうであれば、Child クラス内で A[] という名前のテキスト ボックスが使用可能かどうかを確認する必要があります...

4

1 に答える 1

2

試す

if($('.JRow .BtnSet .Child input:text[name="A[]"]').length){
    //yes the Child class is inside JRow class and has textboxes with name A[]
}
于 2013-09-19T16:08:56.053 に答える