项目中需要把div 上的样式值转成数据展示 形如: padding: 7px 2px 1px 3px; color: rgb(238, 65, 65); background-color: rgb(247, 106, 106); text-align: right; 转成:{ padding: '5px', text-align: 'right' } // 样式转对象 function styleToObj(style) { if (!style || style == '') { return…