我有这个正则表达式,如何更改它以便删除所有错误的内容?我试过推杆else {$(this).remove();}
,但没有达到要求的结果。谢谢。
function SortFabricsFunction(){
$('#Fabric_'+ItemName).children('img').each(function () {
var TitleIs = [this.alt];
var TitleIs = this.alt.split(/,\s?/)
var regex = new RegExp('^(' + [ItemGroup].join('|') + ')$');
for(var i=0; i<TitleIs.length; i++){
if (regex.test(TitleIs[i])) {$(this).remove();}
}//for
});//each
}//function