var str = "13862547892,12364875985,45933154786";
if(/\d{11}(\s*[,,]\s*\d{11})*/.test(str)){
    alert("OK");
}else{
    alert("Error");
}
这样呢?