jQuery 插件自定义事件
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的插件代码中,您必须附加选择/取消选择事件的处理程序,以便每当在任何单元格上触发任何选择/取消选择事件时,它将执行传递给
select
或deselect< 的处理程序/代码> 事件。
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
ordeselect
events.