檢查email格式

撿現成的

function checkEmail(value){
    return value.match(/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/);
}