gpt4 book ai didi

jquery - 在 Jquery Mobile 中获取 div 元素的宽度

转载 作者:行者123 更新时间:2023-12-01 05:00:15 26 4
gpt4 key购买 nike

我知道所有元素都隐藏在 jquery mobile 中。但我需要获取加载的第一个主页中“div”元素的宽度值。有办法做到这一点吗?

谢谢

最佳答案

$(document).ready(function() {

$('#your_div').width(); // you have also .outerWidth() and .innerWidth()

// you can also try with

$('#your_div:hidden').width();

// or

$('#your_div:hidden').css('width');

});

根据评论

$('div.myClass:hidden').css('width'); // select div with class myClass and hidden also

您还可以执行以下技巧来获取隐藏 div 的宽度

$(".myClass").css({'position':'absolute','visibility':'hidden','display':'block'});

var optionHeight = $(".myClass").width();

$(".myClass").css({'position':'static','visibility':'visible','display':'none'});

关于jquery - 在 Jquery Mobile 中获取 div 元素的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10868731/

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