gpt4 book ai didi

javascript - 如何获取调用我的函数的元素的 ID、类或 HTML 标记?

转载 作者:行者123 更新时间:2023-12-03 07:28:46 24 4
gpt4 key购买 nike

我一直在尝试使用jQuery.fn.extend()并且它一直在工作,但我想获取调用它的ID、类或html标签。我不知道调用我的 fn 的字符串是标签、ID 还是类。

例如,

$('table').scrollify();

我希望能够在我的 scrollify 函数中获取字符串 'table' 而不是 this

这是我的代码:

(function($) {
$.fn.scrollify = function() {
$('tbody').css({
'width': Math.ceil($('thead').width() + 17)
});
$('tbody > tr > td').css({
'width': Math.ceil($('thead').width())
});
$('thead > tr > th').css({
'width': $('tbody').width() / $('thead > tr > th').length
});
$('tbody').css({
'margin-top': $('thead').height() - 1
});
return this.get(0).scrollHeight > this.height();
};
})(jQuery);

$('table').scrollify();

最佳答案

经过多次调整和“安慰”这个,我发现我只需要执行以下操作:

this.selector

句号。

关于javascript - 如何获取调用我的函数的元素的 ID、类或 HTML 标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35891974/

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