gpt4 book ai didi

javascript - 从事件处理函数内部引用当前 DOM 元素 (pickadate.js)

转载 作者:行者123 更新时间:2023-12-02 15:21:26 24 4
gpt4 key购买 nike

所以我正在使用 http://amsul.ca/pickadate.js/我正在尝试从任何 pickadate 事件处理程序中引用 DOM 中的日期对象。

例如我希望能够说:

onClose: function() {
var $this = ?; // <-- How do I define $this?
$this.fadeOut();
}

问题:

如何从这些事件处理函数之一中引用当前 DOM 元素?

注意:

this, $(this) and $this don't seem to work :-(

代码:

var dates = $('.dates');

dates.pickadate({
today: t,
format: f,
clear: false,
min: min,
max: max,
selectYears: sy,
selectMonths: sm,
firstDay: fd,
formatSubmit: f2,
hiddenSuffix: s,

onClose: function() {
var $this = ?; // <-- How do I define $this?
$this.fadeOut();
}
});

最佳答案

试试这个:

onClose: function() {
this.trigger().$node.fadeOut()
}

关于javascript - 从事件处理函数内部引用当前 DOM 元素 (pickadate.js),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34016389/

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