0

我试图在 .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();
        });
    });
});
4

1 回答 1

1

您在同一行中使用 jquery 和 javascript

做这个

var width = self.find("#testing").width(); // jquery. you should change the name of the `self` variable to another one
于 2018-10-18T12:38:34.607 回答