尝试获取 .each() 中元素的宽度

Trying to get width of element inside .each()

我试图在 .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