如何扩展 jQuery ColorBox 来添加事件?

发布于 2024-12-24 18:23:49 字数 311 浏览 1 评论 0原文

我是 jQuery 新手,过去 5 年一直使用 Mootools。我喜欢 jQuery ColorBox 模式,但我需要扩展它以包含 onCancel 和 onConfirm 事件。有人可以指出如何将这些事件扩展到 ColorBox。

像这样的事情:

$(".element").colorbox({
    onConfirm:function(){
        // some function 
    },
    onCancel:function(){ 
        // some function
    }
});

I'm new to jQuery, used Mootools for the last 5 years. I like the jQuery ColorBox modal, but I need to extend it to inlcude onCancel and onConfirm events. Can someone point out how these events can be extended to ColorBox.

Something like this:

$(".element").colorbox({
    onConfirm:function(){
        // some function 
    },
    onCancel:function(){ 
        // some function
    }
});

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

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

发布评论

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

评论(1

世界等同你 2024-12-31 18:23:49

有回调:
http://jacklmoore.com/colorbox/

Callbacks       
onOpen  false   Callback that fires right before ColorBox begins to open.
onLoad  false   Callback that fires right before attempting to load the target    content.
onComplete  false   Callback that fires right after loaded content is displayed.
onCleanup   false   Callback that fires at the start of the close process.
onClosed    false   Callback that fires once ColorBox is closed.

There are Callbacks:
http://jacklmoore.com/colorbox/

Callbacks       
onOpen  false   Callback that fires right before ColorBox begins to open.
onLoad  false   Callback that fires right before attempting to load the target    content.
onComplete  false   Callback that fires right after loaded content is displayed.
onCleanup   false   Callback that fires at the start of the close process.
onClosed    false   Callback that fires once ColorBox is closed.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文