Confirm gives you chance to click on cancel, and reload will not be done!
Instead, you can use something like this:
if(alert('Alert For your User!')){}
else window.location.reload();
This will display alert to your user, and when he clicks OK, it will return false and reload will be done! :)
Also, the shorter version:
if(!alert('Alert For your User!')){window.location.reload();}
I hope that this helped!? :)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…