Jump to content
  • 0

Как получить дочерний элемент?


DivMan
 Share

Question

 

 

  <div class="question">

            <div class="img-and-variantbi clearfix">
                
                <div class="question-for-img">

                    <form method="get">
                        <ul class="clearfix radio-answer">
                        <li>......</li>
                        <li>......</li>
                          

                            <input type="submit" value="Проверить" class="btnAnswer">
                        </ul>
                    </form>


                </div>
            </div>
        </div>
        
        
        
        
          <div class="question">

            <div class="img-and-variantbi clearfix">
                
                <div class="question-for-img">

                    <form method="get">
                        <ul class="clearfix radio-answer">
                        <li>......</li>
                        <li>......</li>
                          

                            <input type="submit" value="Проверить" class="btnAnswer">
                        </ul>
                    </form>


                </div>
            </div>
        </div>
        
        
        
          <div class="question">

            <div class="img-and-variantbi clearfix">
                
                <div class="question-for-img">

                    <form method="get">
                        <ul class="clearfix radio-answer">
                        <li>......</li>
                        <li>......</li>
                          

                            <input type="submit" value="Проверить" class="btnAnswer">
                        </ul>
                    </form>


                </div>
            </div>
        </div>
$(".question" ).each(function(i,elem) {
         console.log(elem.find('.btnAnswer'));
         
    });

elem.find is not a function

 

в блоке с классом question, есть дочерний элемент с классом question и мне его надо получить

Edited by DivMan
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Спасибо, работает.

А как теперь сделать, если кликнуть по этому элементу, что бы эта кнопка по умолчанию не сработала?

 

    $(".question" ).each(function(i,elem) {
         $(this).find('.btnAnswer').on('click', function (e) {
             e.preventDefault();
             console.log(e);
         });
         
    });

 

Link to comment
Share on other sites

  • 0
12 минут назад, DivMan сказал:

А как теперь сделать, если кликнуть по этому элементу, что бы эта кнопка по умолчанию не сработала?

Не уверен что понимаю вопрос, так как предложенный Вами код делает именно то что Вы говорите.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy