Jump to content
  • 0

Форма, которая при вызове с разных кнопок, должна скрывать некоторые поля


S_A_N_T_A
 Share

Question

Всем доброго времени суток!

У меня есть одна форма, которая при вызове с разных кнопок, должна скрывать некоторые поля.

Вот кнопки:

<a  data-target="#call">Кнопка 1</a>
<a  data-target="#call">Кнопка 2</a>

Вот форма:

<div id="call">
<form>
<div class="pole1">Поле 1</div>
<div class="pole2">Поле 2</div>
</form>
</div>

Форма может иметь только один ID, в моем случае это “call”.

Как сделать, чтобы при клике на “Кнопка 1” отображалось только “Поле 1”?

Как сделать, чтобы при клике на “Кнопка 2” отображалось только “Поле 2”?

Сайт делаю для себя. Знаний в js нету.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Если кому понадобится, вот решение

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
</head>
<body>
    <a data-target="#call" class="first">Кнопка 1</a>
    <a data-target="#call" class="second">Кнопка 2</a>
 
    <div id="call">
        <form>
            <div class="pole1">Поле 1</div>
            <div class="pole2">Поле 2</div>
        </form>
    </div>
    
    <script>
    $(function(){
        $('.first').click(function(){
            $('.pole1').show();
            $('.pole2').hide();
        });
        
        $('.second').click(function(){
            $('.pole2').show();
            $('.pole1').hide();
        });
    });
    
    </script>
</body>
</html>

 

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