尝试获取 .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

相关内容

  • 没有找到相关文章

最新更新