jQuery 插件自定义事件

发布于 2024-12-18 23:44:47 字数 406 浏览 1 评论 0原文

我有一个 jQuery 插件,允许用户选择表中的单元格,我将此插件称为 cellSelect。 cellSelect 有 2 个选项:

$('table#tableid').cellSelect({
    select: function(){
       // Run when a cell is selected
    },
    deselect: function(){
       // Run when a cell is deselected
    }
});

我需要创建一个可以像这样运行的事件:

$('td').eq(15).select();
$('td').eq(15).deselect();

这还将运行插件选项中指定的功能

I have a jQuery plugin that allows a user to select cells in a table, I've called this plugin cellSelect. cellSelect has 2 options:

$('table#tableid').cellSelect({
    select: function(){
       // Run when a cell is selected
    },
    deselect: function(){
       // Run when a cell is deselected
    }
});

I need create an event that can be run like this:

$('td').eq(15).select();
$('td').eq(15).deselect();

This will also run the functions specified in the plugin options

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

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

发布评论

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

评论(1

红焚 2024-12-25 23:44:47

在您的插件代码中,您必须附加选择/取消选择事件的处理程序,以便每当在任何单元格上触发任何选择/取消选择事件时,它将执行传递给 selectdeselect< 的处理程序/代码> 事件。

In your plugin code you have to attach handler for select/deselect events so that whenever any select/deselect event is triggered on any cell it will execute the handler that is passed to select or deselect events.

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