javascript - 使用 JavaScript 显示/隐藏 HTML div

标签 javascript html show-hide

我的 HTML 代码具有以下结构:

<a class='card'...<a/>
<div id = "divone" class="card__background" ... </div>

有四张各自的卡片。

当点击 class='card' 的 div 之一时。 JavaScript 代码应该将 'class="card__background"隐藏在其他 class='card' div 中。我已经有一个不起作用的脚本代码。

为什么会这样?

我正在寻求修复我的 JavaScript 代码以使其正常工作

function imagechange(divid) {
  var x = document.getElementById(divid);
  if (x == "divone") {
    x.style.display = "block";
    divtwo.style.display = 'none';
    divthree.style.display = 'none';
    divfour.style.display = 'none';
  } else if (x == "divtwo";) {
    x.style.display = "block";
    divone.style.display = 'none';
    divthree.style.display = 'none';
    divfour.style.display = 'none';
  } else if (x == "divthree";) {
    x.style.display = "block";
    divone.style.display = 'none';
    divtwo.style.display = 'none';
    divfour.style.display = 'none';
  } else {
    x.style.display = "block";
    divone.style.display = 'none';
    divtwo.style.display = 'none';
    divthree.style.display = 'none';
  }
}
:root {
  --background-dark: #2d3548;
  --text-light: rgba(255, 255, 255, 0.6);
  --text-lighter: rgba(255, 255, 255, 0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

body {
  height: 100%;
}

.hero-section {
  align-items: flex-start;
  background-image: linear-gradient(15deg, #0f4667 0%, #2a6973 150%);
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  list-style: none;
  position: relative;
}

.card:before {
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
}

.card__background {
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  trsnsform: scale(1) translateZ(0);
  transition: filter 200ms linear, transform 200ms linear;
}

.card:hover .card__background {
  transform: scale(1.05) translateZ(0);
}

.card-grid:hover>.card:not(:hover) .card__background {
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.card__content {
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.card__category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading {
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  word-spacing: 100vw;
}
<body>
  <center>
    <h1>My Favorite Things</h1>
    <h2>Click on one to get started</h2>
  </center>
  <section class="hero-section">
    <div class="card-grid">
      <a class="card" onclick="imagechange('divone')" href="#">
        <div id="divone" class="card__background" style="background-image: url(photo-one.jpg)"></div>
        <div class="card__content">
          <p class="card__category">FAV #1</p>
          <h3 class="card__heading">Photo</h3>
        </div>
      </a>

      <a class="card" onclick="imagechange('divtwo')" href="#">
        <div id="divtwo" class="card__background" style="background-image: url(photo-two.jpg)"></div>
        <div class="card__content">
          <p class="card__category">FAV #2</p>
          <h3 class="card__heading">Drawing</h3>
        </div>
      </a>

      <a class="card" onclick="imagechange('divthree')" href="#">
        <div id="divthree" class="card__background" style="background-image: url(photo-three.jpg)"></div>
        <div class="card__content">
          <p class="card__category">FAV #3</p>
          <h3 class="card__heading">Sports & Lifting</h3>
        </div>
      </a>

      <a class="card" onclick="imagechange('divfour')" href="#">
        <div id="divfour" class="card__background" style="background-image: url(photo-four.jpg)"></div>
        <div class="card__content">
          <p class="card__category">FAV #4</p>
          <h3 class="card__heading">Anime & Peaky Blinders</h3>
        </div>
      </a>
      <div>
  </section>

</body>

最佳答案

当您使用 var x = document.getElementById(divid); 时,您将获得一个对象。所以你的条件永远不会成立。

如果您想检查 id,只需将条件更改为:

function imagechange(divid) {
  const x = document.getElementById(divid)
  const id = x.id

  if (id === 'divone') {
    x.style.display = 'block'
    divtwo.style.display = 'none'
    divthree.style.display = 'none'
    divfour.style.display = 'none'
  } 
  else if (id === 'divtwo') {
    x.style.display = 'block'
    divone.style.display = 'none'
    divthree.style.display = 'none'
    divfour.style.display = 'none'
  }  
  else if (id === 'divthree') {
    x.style.display = 'block'
    divone.style.display = 'none'
    divtwo.style.display = 'none'
    divfour.style.display = 'none'
  }  
  else {
    x.style.display = 'block'
    divone.style.display = 'none'
    divtwo.style.display = 'none'
    divthree.style.display = 'none'
  }
}

关于javascript - 使用 JavaScript 显示/隐藏 HTML div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72581413/

相关文章:

javascript - JavaScript 定时器倒计时

javascript - 3个文本框,1个按钮,单击按钮将文本放入光标所在的文本框中

javascript - 如何在 Chart.js 上自定义边框样式

javascript - 在水平滚动 flexbox div 的边缘实现滚动指示器

jquery - 表格单元格未正确跨越

javascript - 如何在 Canvas 中画线

javascript - 如何在html中显示表单中的元素

javascript - MVC JQuery Ajax Busy Indicator 覆盖在表单上

javascript - 多个显示隐藏切换与 div 滑出

jquery - 通过复选框cookie显示和隐藏div