属性匹配
包括属性名属性值
?匹配所有的属性,甚至包含一些不规则情况。反正尽量是与浏览器同步
‘<div class = main id="box">‘.match(/[\s][^\s]+[^=]*=[\s]*["]?[^>\s"]*["]?/g)
?
匹配具体属性,下例将匹配class属性
‘<div class = main id="box">‘.match(/class[^=]*=[\s]*["]?[^>\s"]*["]?/g)
?
时间: 2024-10-14 06:14:13