gpt4 book ai didi

javascript - Less 中的变量操作

转载 作者:行者123 更新时间:2023-11-29 16:23:06 24 4
gpt4 key购买 nike

全部
我想计算页面的高度,在我的 test.less

@clientHeight:`$(window).height()`;

当我使用@clientHeight时,因为jquery只返回一个数字,我需要加上px
这样的单位所以,我尝试了这些方法:
1)

div{height: @clientHeight+px;

出来了:
高度:705 像素;(注意中间有空格)
2)

@clientHeight:`$(window).height()+'px'`

出来了:
高度:“705px”;

最佳答案

我知道这已经很长时间了,但如果您或其他任何人碰巧仍在寻找答案,这对我有用:

@clientHeight: unit(`$(window).height()`, px);

来自 LESS 函数引用:

unit

Remove or change the unit of a dimension

关于javascript - Less 中的变量操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8920131/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com