jQuery UI 的 Sortable 组件提供了一个 update 事件,该事件在 Sortable 实例中的项目位置发生更改时触发。在本教程中,我们将详细介绍 Sortable 的 update 事件的使用。
update 事件基本语法如:
$( ".selector" ).sortable({
update: function( event, ui ) {
// Code to be executed when the Sortable instance updates
}
});
其中,".selector" 是 Sortable 的 CSS 选择器。
以下两个示例:
示例一:使用 Sortable 的 update事件
$( "#my-sortable" ).sortable({
update: function( event, ui ) {
console.log( "Sortable updated" );
}
});
这将创建一个名为 my-sortable 的 Sortable 实例,并在 update 事件处理程序中记录一条消息。当用户更改 Sortable 实例中的项目位置时,将在控制台中记录 "Sortable updated"。
示例二:使用 Sortable update 事件和 ui.item 属性
$( "#my-sortable" ).sortable({
update: function( event, ui ) {
console.log( "Sortable updated" );
console.log( "Moved item: " + ui.item.text() );
}
});
这将创建一个名为 my-sortable 的 Sortable 实例,并在 update 事件处理程序中记录两条消息。第一条消息将在控制台中记录 "Sortable updated",第二条消息将在控制台记录移动的项目的文本。
总结:
jQuery UI 的 Sortable 组件提供了一个 update 事件,该事件在 Sortable 实例中的项目位置发生更改时触发。要使用 update 事件,需要将其与 Sortable 的 jQuery 对象一起使用。在 update 处理程序中执行任何代码,以响应 Sortable 实例中的项目位置更改。可以使用 ui.item 属性访问移动的项目的 jQuery 对象。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQuery UI Sortable update事件 - Python技术站