SoFunction
Updated on 2025-04-03

Commonly used JS methods in projects

Verify that it is in the image format

Copy the codeThe code is as follows:

 function IsImgType(src) {
     var rFilter = /^(?:image\/bmp|image\/cis\-cod|image\/gif|image\/ief|image\/jpeg|image\/jpeg|image\/jpeg|image\/pipeg|image\/png|image\/svg\+xml|image\/tiff|image\/x\-cmu\-raster|image\/x\-cmx|image\/x\-icon|image\/x\-portable\-anymap|image\/x\-portable\-bitmap|image\/x\-portable\-graymap|image\/x\-portable\-pixmap|image\/x\-rgb|image\/x\-xbitmap|image\/x\-xpixmap|image\/x\-xwindowdump)$/i;
     var Filter = /(?:bmp|cis\-cod|gif|ief|jpeg|jpeg|jpeg|pipeg|png|svg\+xml|tiff|x\-cmu\-raster|x\-cmx|x\-icon|x\-portable\-anymap|x\-portable\-bitmap|x\-portable\-graymap|x\-portable\-pixmap|x\-rgb|x\-xbitmap|x\-xpixmap|x\-xwindowdump)$/i;
     return (src) || (src);
 }

Verify that it is color

Copy the codeThe code is as follows:

function detectColor(value) {
    var pattern = /^#[0-9a-fA-F]{6}$/; //#XXXXXX
    var result;
    var rgbRegex = /(^rgb\((\d+),\s*(\d+),\s*(\d+)\)$)|(^rgba\((\d+),\s*(\d+),\s*(\d+)(,\s*\d+\.\d+)*\)$)/;
    if ((value)) {
        result = value;
    } else if ((value)) { //rgba(0, 0, 0, 0)
        result = value;
    }
    return result;
}

Convert RGB to HEX:

Copy the codeThe code is as follows:

 function zero_fill_hex(num, digits) {
     var s = (16);
     while ( < digits) {
         s = "0" + s;
     }
     return s;
 }
 function rgb2hex(rgb) {
     if ((0) == '#') {
         return rgb;
     }
     var ds = (/\D+/);
     var decimal = Number(ds[1]) * 65536 + Number(ds[2]) * 256 + Number(ds[3]);
     return "#" + zero_fill_hex(decimal, 6);
 }

Verify that it is an email address:

Copy the codeThe code is as follows:

 function testEmail (value, target) {
     value = ();
     if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(value)) {
         ("");
         alert("Please fill in the correct E-mail address!");
     }
 }

Convert image src to data 64:

Copy the codeThe code is as follows:

function createImgData(img) {
    var image = new Image();
    = || img;
    var tmpCanvas = $("<canvas></canvas>")[0];
    var tmpCtx = ("2d");
    if (tmpCanvas) {
        = ;
        = ;
        (image, 0, 0);
        return ();
    }
}

The above are the commonly used js methods I have used in my recent projects. I have compiled them out and hope that my friends will like it.