我在jQuery上的remove类有问题。我尝试在带有表单的页面上创建弹出窗口。当我删除类以显示弹出窗口时,字段表单不可见。我该怎么办?
<script>
function Cookie()
{
var ciasteczka = document.cookie.split("; ");
for (i=0; i<ciasteczka.length; i++)
{
var ciacho=ciasteczka[i];
}
$('#baner').addClass('wyswietl');
}
function Zniknie()
{
$('#baner').removeClass('wyswietl');
}
<style>
#home {
position:fixed;
z-index:99999;
background-color:rgba(0,0,0,0.5);
height:100%;
width:100%;
display: inline;
}
#home img
{
position: fixed;
}
.wyswietl
{
display: inline;
}
<div id="baner" class="nie-wyswietl">
<div id="home">
<img src='' onclick="Zniknie();" />
</div>
</div>