gpt4 book ai didi

javascript - 尝试获取 .each() 内元素的宽度

转载 作者:行者123 更新时间:2023-12-03 00:55:01 25 4
gpt4 key购买 nike

我试图在 .each() 函数内获取元素的宽度,但是我遇到了它根本不起作用的问题。

jQuery(document).ready(function($) {
$('.tooltip').each(function() {
var self = $(this);

var width = self.find("#testing").offsetWidth;
alert(width); //Returns undefined

$(this).find(".tooltip-icon").hover(function(){
self.find(".tooltip-text").show();
}, function () {
self.find(".tooltip-text").hide();
});
});
});

最佳答案

您在同一行中使用 jquery 和 javascript

这样做

var width = self.find("#testing").width(); // jquery. you should change the name of the `self` variable to another one

关于javascript - 尝试获取 .each() 内元素的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52874082/

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