我正在使用“ React Sortable Hoc
”npm lib来拖动排序元素。
https://www.npmjs.com/package/react-sortable-hoc
我使用的其中一个事件是在 onSortMove
中构建的,它会返回事件。
我可以通过 event.target.style
如果我尝试设置新的样式属性元素不改变它是风格还是简单我只是无法打印新值。
onSortMove = (event, index, collection) =>
{
// changing of style - I think it should work?
event.target.style.cursor = 'grabbing';
// checek if style is changed, but it is not. Why?
console.log(event.target.style);
};