React - 访问事件目标时更改样式

时间:2018-04-18 06:58:24

标签: reactjs

我正在使用“ 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);
    };

0 个答案:

没有答案