摘要: (.+)默认是贪婪匹配 (.+?)为惰性匹配 疑问号让.+的搜索模式从贪婪模式变成惰性模式。 var str = 'aaa<div style="font-color:red;">123456</div>bbb' <.+?>会匹配<div style="font-color:red;"> <.+>会 阅读全文
posted @ 2016-09-25 13:44 SneakyCrab 阅读(12038) 评论(0) 推荐(0) 编辑