gpt4 book ai didi

javascript - 如何检查 jQuery 插件和函数是否存在?

转载 作者:IT王子 更新时间:2023-10-29 03:03:00 25 4
gpt4 key购买 nike

我在某些页面中有一个插件,但在其他一些页面中我不想要它,所以我没有引用它的脚本文件。

如何在使用前检查插件函数是否存在。

在我的例子中,我正在使用这个插件:我是这样使用它的:

$('#marquee-inner div').marquee('pointer').mouseover(function() {
$(this).trigger('stop');
}).mouseout(function() {
$(this).trigger('start');
}).mousemove(function(event) {
if ($(this).data('drag') == true) {
this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
}
}).mousedown(function(event) {
$(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
}).mouseup(function() {
$(this).data('drag', false);
});

我想要的是在调用这个跑马灯函数之前检查它是否存在。

最佳答案

if ($.fn.marquee) {
// there is some jquery plugin named 'marquee' on your page
}

关于javascript - 如何检查 jQuery 插件和函数是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5339876/

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