gpt4 book ai didi

javascript - 我想知道我的指令模板中
的宽度,并将其存储在变量中我该如何实现

转载 作者:行者123 更新时间:2023-11-28 08:22:04 25 4
gpt4 key购买 nike

知道div的宽度

我想知道模板内的宽度,并将其存储在变量中我该如何实现

pp.directive('skillSlider',function()
{
return{
template:'<div class="progress"></div>'
}
});


----------
how to calculate the width of the div inside the directive template

最佳答案

您可以使用 angular.element 来做到这一点,例如:

angular.element(document.getElementById(id)).clientWidth;
angular.element(document.querySelectorAll('.class')[0]).clientWidth;

或者如果你加载了 jQuery

angular.element($('#id').width();
angular.element($('.class')[0]).width();

关于javascript - 我想知道我的指令模板中 <div> 的宽度,并将其存储在变量中我该如何实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28713189/

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