Показать сообщение отдельно
  #1 (permalink)  
Старый 22.01.2023, 09:58
Аспирант
Отправить личное сообщение для DenisZ Посмотреть профиль Найти все сообщения от DenisZ
 
Регистрация: 19.04.2022
Сообщений: 31

Показать/Скрыть объект
Здравствуйте!
Есть HTML-документ:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <script src="jquery-3.6.3.js"></script>
    <script src="index.js"></script>  
    <title>Document</title>
</head>
<body>
    
    <div class="cont1">
        <div class="cont22" ><button id="b_open">Open</button></div>
    <div class="cont44"></div>
    <div class="cont33"><button id="b_open">Open</button></div>
        </div>
   <div class="cont5">
        <div class="cont2"></div>
        <div class="cont4"></div>
        <div class="cont3"></div>
</div> 
<button id="b_close">Close</button>

</body>
</html>


Есть CSS-стили:
Код:
.cont1{
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top:7%;
    padding: 1%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.099), rgb(255, 255, 255));
    border-radius: 7px;
    display:flex; 
    flex-direction: row;
    justify-content:space-evenly;
    z-index: 1;
}
.cont22,
.cont33{
    height: 200px;
    width:300px;
    padding: 20px;
    width:30%;
    display:inline-flex;
    flex-direction: row;
    justify-content:space-evenly;

    
}
.cont2,
.cont3{
    height: 200px;
    width:  300px;
    padding: 20px;
    display:inline-flex;
    flex-direction: row;
    background-color: blueviolet;
    justify-content: right;

}
.cont44{
    width: 10%;
    height: 100%;
    display:inline-flex;
    justify-content:space-evenly;

    
}
.cont4{
    width: 10%;
    height: 100%;
    display:inline-flex;
    justify-content:space-evenly;
    
}

.cont5{
    width:100%; 
    margin-top:-14%; 
    display:flex; 
    flex-direction: row;
    align-items: center; 
    justify-content:space-evenly;
    z-index: 2;
}


#b_open{
    height: 30px;
    cursor: pointer;
    background-color: red;
    color: black;
}

#b_close{
    height: 30px;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;   
}
Есть также JQuery:
$('#b_close').click(function(){
    $('.cont2, .cont3, .cont4').hide();
})

Явных ошибок VSCode не выдает, однако JQuery не работает.
ПОЧЕМУ?
Ответить с цитированием