js regular check image format

Common image formats:

// determines whether the image format --img open label 
function isImage (STR) {
var REG = /\.(png|jpg|gif|jpeg|webp)$/;
return reg.test (STR);
}

Guess you like

Origin www.cnblogs.com/langqq/p/11671785.html
Recommended