gpt4 book ai didi

javascript - 启用下面的 jQuery 代码以在页面上任意位置的 onClick 事件之后执行

转载 作者:行者123 更新时间:2023-12-02 17:43:08 27 4
gpt4 key购买 nike

我使用下面的代码片段来暂停 slider ( slider 旋转):

jQuery(document).ready(function() {
jQuery(".rev_slider_wrapper").each(function(){
$this = jQuery(this);
id_array = $this.attr("id").split("_");
id = id_array[2];
jQuery.globalEval( 'revapi'+id+'.bind("revolution.slide.onloaded",function (e) {revapi'+id+'.revpause();});' );
});
});

如何使下面的代码片段仅在页面上任意位置发生点击事件后执行?

jQuery(".rev_slider_wrapper").each(function(){
$this = jQuery(this);
id_array = $this.attr("id").split("_");
id = id_array[2];
jQuery.globalEval( 'revapi'+id+'.revresume();' );
});

最佳答案

也许你的 $(document).ready() 函数中有类似的东西:

$("body").click(function(){
//your code snippet
});

如果 body 不起作用,请尝试 documenthtml 等内容

关于javascript - 启用下面的 jQuery 代码以在页面上任意位置的 onClick 事件之后执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22023094/

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