首页 > 解决方案 > 在vue js中设置div的高度

问题描述

我正在使用 vue js。我想使用纯 javascript 根据另一个 div 高度设置一个 div。我面临的问题是我无法使用纯 java 脚本设置高度。但我可以使用 jquery 设置它。谁能帮我把这个 jquery 改成 javascript 。给出了我正在使用的代码

 Vue.nextTick(function () {
            var offsetHeight = document.getElementById('filterSection').offsetHeight;
            $(".searchResultSection").css("max-height",`calc(100% - ${offsetHeight}px)`);
           });

我需要将 jquery 部分更改为 java 脚本。

标签: javascriptvue.js

解决方案


事实上,computed propertieshttps://vuejs.org/v2/guide/computed.html#Computed-Properties)是解决您的问题的完美选择:

声明一个将返回 filterSectionHeight的计算属性

export default {
  name: "App",

  computed: {
    filterSectionHeight() {
      const filterSectionDOM = document.getElementById("filterSection");
      return filterSectionDOM ? filterSectionDOM.offsetHeight : 0;   
    },
  }
};

定义您的 divfilterSectionsearchResultsSection在您的组件(或 App 组件)中,不要忘记添加一个:style属性来处理模板中max-height提供的动态.searchResultsSection

<div id="filterSection"></div>
<div class="searchResultsSection"
     :style="{
            'max-height': `calc(100% - ${filterSectionHeight}px)`
     }">
</div>

在你的 CSS 中将每个 div 的高度设置为 100%

#app {
  height: 600px;
  width: 100%;
}

#filterSection {
  height: 100%;
  background: rebeccapurple; //https://en.wikipedia.org/wiki/Eric_A._Meyer
}

.searchResultsSection{
  height: 100%;
  background: rebeccapurple;
  opacity: 0.6;
}

您将在此处找到完整的演示 > https://codesandbox.io/s/1rkmwo1wq


推荐阅读