我有带有 css 属性及其值的字符串:
str = "filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');
background: -webkit-linear-gradient(top, black, white);
animation-duration: 12s;";
我想我的比赛只返回属性
properties = text.match(/[^;:]*:/g);
但它也返回“progid:”,我该如何避免它?