我尝试在字符串中检查给定的RegExp
-rule 并需要获取当前的匹配规则。
这是我到目前为止所尝试的:
var prefixes = /-webkit-|-khtml-|-moz-|-ms-|-o-/g;
var match;
var str = '';
while ( !(match = prefixes.exec(str)) ) {
str += '-webkit-';
console.log(match); // => null
}
是match
,null
但我怎样才能获得当前的匹配规则(在这种情况下-webkit-
)?