For consecutive integers, say from 1 to 10, it is the same idea as that with just even integer products. The key here is that any number less than 100 will be divided by the product of 1 to 10, since the product contains a multiple of the number you are dividing it by (i.e - the product of 1 to 10 will be divisible by 7 because you have 1*2*3*...6*7*8*9*10, so dividing by 7 will work). This means that up to 10, you are certain that any number will be divisible in your product. However, if you try dividing by 11, you will see that nothing is divisible by it. So you know that adding 1 to this product, or any number for that matter, could make the number divisible by a prime number, but you have to keep in mind that the prime number will be greater than 10, since every prime number below it can already be divided into the main product.
Now for the example on even integers (same idea as the one above, only you distribute the 2 out)
For every even integer, they all share the "2" in common, so you could just pull it out and distribute accordingly. So the product of the 4 even integers 2 * 4 * 6 * 8 is the same (1*2) * (2*2) *(3*2) * (4*2), so you could pull out a 2 from each one, which could also be written as 1*2*3*4*2*2*2*2 = 2^4*(1*2*3*4). Naturally, you could see this being applied to any product of even integers up to n, where the product will be 2^n * (1*2*...*n), where n is the number of even integers in your set.