如何获取getUIKit事件参数的className
How to get the className of getUIKit event parameter
在底部的 documentation 中,有关于事件及其参数的信息 (事件、下一张幻灯片、当前幻灯片)。
$('#elemId').on('beforeshow.uk.slideshow', function(event, nxt_slide, cur_slide){
// logic here...
});
如何获取 nxt_slide
和 cur_slide
的 className
?
根据问题中提到的文档,参数 (next slide, current slide).
是 li
个元素。
beforeshow.uk.slideshow
事件在显示新幻灯片之前触发(在动画完成之前)。因此,为了访问它们并获得它们的 class,您可以使用 jquery
:
$('#elemId').on('beforeshow.uk.slideshow', function(event, nxt_slide, cur_slide){
var nxt-slide-cls = $(nxt_slide).attr('class');
alert(nxt-slide-cls);
// You can get the cur_slide class name with the same approach.
});
在底部的 documentation 中,有关于事件及其参数的信息 (事件、下一张幻灯片、当前幻灯片)。
$('#elemId').on('beforeshow.uk.slideshow', function(event, nxt_slide, cur_slide){
// logic here...
});
如何获取 nxt_slide
和 cur_slide
的 className
?
根据问题中提到的文档,参数 (next slide, current slide).
是 li
个元素。
beforeshow.uk.slideshow
事件在显示新幻灯片之前触发(在动画完成之前)。因此,为了访问它们并获得它们的 class,您可以使用 jquery
:
$('#elemId').on('beforeshow.uk.slideshow', function(event, nxt_slide, cur_slide){
var nxt-slide-cls = $(nxt_slide).attr('class');
alert(nxt-slide-cls);
// You can get the cur_slide class name with the same approach.
});