正则匹配结果
return match ? {
tx: +match[1],//为什么需要 + 号呢?
ty: +match[2],
rotate: +match[3],
scale: +match[4]
} : null;
这里为什么需要写 + 号呢?
return match ? {
tx: +match[1],//为什么需要 + 号呢?
ty: +match[2],
rotate: +match[3],
scale: +match[4]
} : null;
这里为什么需要写 + 号呢?
2017-01-16
举报