아래 jQuery 소스를 보면..
function(), function(evt), function(event) 3가지가 있는데.. 3가지가 어떤차이가 있을까요?
$("#Btn").on("click", function(){
self.location = "register";
});
$("#Btn").on("click", function(evt){
self.location = "register";
});
$("#Btn").on("click", function(event){
self.location = "register";
});