jQuery:自定义事件的触发函数

发布于 2024-12-26 13:28:28 字数 682 浏览 0 评论 0原文

我创建了一个名为“onEnter”的 jQuery 函数。 它在运行时效果很好,但我需要随时触发该事件。可以这样想:

$(obj).onEnter(function(){ doSomething(); });

这就像一种魅力。 然后我想触发:

$(obj).onEnter();

但这似乎不起作用。 这是我的代码。 提前致谢。

$.fn.extend({
    onEnter: function(fn) {
        this.each(function() {
            new $.onEnter( this, fn );
        });
        return this;
    }
});

$.onEnter = function( obj, fn ) {
    if(typeof fn == 'function')
    {
        $(obj).keypress(function(e){
            if(e.which == 13)
            {
                e.preventDefault();
                fn(obj);
            }
        });
    };
    return;
};

I've created a jQuery function called "onEnter".
It works great on the run, but I need to trigger the event whenever I want. Somethink like this:

$(obj).onEnter(function(){ doSomething(); });

That works like a charm.
Then I want to trigger:

$(obj).onEnter();

But this doesn't seems to work.
Here's is my code.
Thanks in advance.

$.fn.extend({
    onEnter: function(fn) {
        this.each(function() {
            new $.onEnter( this, fn );
        });
        return this;
    }
});

$.onEnter = function( obj, fn ) {
    if(typeof fn == 'function')
    {
        $(obj).keypress(function(e){
            if(e.which == 13)
            {
                e.preventDefault();
                fn(obj);
            }
        });
    };
    return;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慵挽 2025-01-02 13:28:28

我认为您正在寻找使用 jQuery .trigger()

所以你可以这样做:

$('#foo').bind('custom', function(event, param1, param2) 
{
  alert(param1 + "\n" + param2);
});

$('#foo').trigger('custom', ['Custom', 'Event']);

I think you're looking to use jQuery .trigger().

So you could do something like:

$('#foo').bind('custom', function(event, param1, param2) 
{
  alert(param1 + "\n" + param2);
});

$('#foo').trigger('custom', ['Custom', 'Event']);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文