我正在做 angular 4 项目,我需要拖动项目,所以我使用 ng2-dragula 插件为我做这件事。现在我需要在下降到特定位置后从每一行中提取 data-id 属性。
dragulaService.drop.subscribe(
(args) =>{
const [bagName, elSource, bagTarget, bagSource, elTarget] = args;
console.log('after', $(bagSource)); // element after the inserted element
});
在 $bagSource 变量中,我将以新的顺序获取每一行。说吧
<tr attributes data-id="23"><tr>
<tr attributes data-id="2"><tr>
<tr attributes data-id="32"><tr>
我如何从每个 tr 字段中提取数据 ID 。我需要以数组中的新顺序获取每个 id。我要求的结果应该是 [23,2,32];
jquery $(element).attr("data-id") 在角度 4 中等效。